/*
date :   28.11.01 
author:  danny.callaghan@freeserve.com
file:    information.js 
owner:   trev@nufc-london.com

This script contains any information/content/stuff that you may want to change on the header, footer and left nav. 
*/


// * Header Stuff *

// trev's email address as it appears to the user...
var trevsEmail = "Trev@NUFC-London.com"

// trev's 'actual' email address, and any info that trev wants appending to it...
var trevsEmailAddress = "Trev@NUFC-London.com?subject=NUFC-London"

// this is the width of the spacer that sits between the contact info, and the date. this shouldn't need changing, but it may. for example, if we wanted to have trevor@nufc-london.com the email address would be longer, so the spacer would need to be narrower...
var spacer = "410"

// this will need to be changed every year (when it is 2002, this should be "02"). this is so the date writes, for example, 22.11.01, and not 22.11.2001...
var theYear = "09"


// * Nav Stuff *

// the heading for the first set of links...
var firstHeading = "supporters club"
// the heading for the second set of links...
var secondHeading = "newcastle united"
// the heading for the third set of links...
var thirdHeading = "links"

// this is the first set of links, the ones that go under the first heading. 
//  .url is the url for the link (i.e. "travel.html")
//  .title is what it actually says on the nav (i.e. "travel")
// a new object is created for every link needed. to add a new link simply copy and past the whole object and increase the number by one. to change the order simply use the numbers (1 will appear above two, six will appear below five)
// thats it!
var setOne = new Array

setOne[0] = new Object()
setOne[0].url = "/nufc-london/index.html"
setOne[0].title = "home"

setOne[1] = new Object()
setOne[1].url = "/nufc-london/about.html"
setOne[1].title = "about the club"

setOne[2] = new Object()
setOne[2].url = "/nufc-london/constitution.html"
setOne[2].title = "constitution"

setOne[3] = new Object()
setOne[3].url = "/nufc-london/agm.html"
setOne[3].title = "AGM minutes"

setOne[4] = new Object()
setOne[4].url = "/nufc-london/joinus.html"
setOne[4].title = "how to join us"

setOne[5] = new Object()
setOne[5].url = "/nufc-london/sports/pool.html"
setOne[5].title = "pool team"

setOne[6] = new Object()
setOne[6].url = "/nufc-london/sports/darts.html"
setOne[6].title = "darts team"

setOne[7] = new Object()
setOne[7].url = "/nufc-london/travel.html"
setOne[7].title = "travel"

setOne[8] = new Object()
setOne[8].url = "/nufc-london/merchandise.html"
setOne[8].title = "merchandise"

setOne[9] = new Object()
setOne[9].url = "/nufc-london/photos.html"
setOne[9].title = "photos"

setOne[10] = new Object()
setOne[10].url = "/nufc-london/archive.html"
setOne[10].title = "archive"

setOne[11] = new Object()
setOne[11].url = "/nufc-london/contactus.html"
setOne[11].title = "contact us"

setOne[12] = new Object()
setOne[12].url = "/nufc-london/notice_board.html"
setOne[12].title = "notice board"

setOne[13] = new Object()
setOne[13].url = "/nufc-london/pots/index.html"
setOne[13].title = "player of the season"

// this is the second set of links, the ones that go under the second heading. 
// works as above
var setTwo = new Array
setTwo[0] = new Object()
setTwo[0].url = "/nufc-london/squad.html"
setTwo[0].title = "squad"

setTwo[1] = new Object()
setTwo[1].url = "/nufc-london/fixtures.html#latest"
setTwo[1].title = "fixtures / results"

// this is the third set of links, the ones that go under the third heading. 
// notice that here, the links are images, so we just put the full image reference in the .title, and - of course - the links are absolute url's because we are linking to other sites. by the way, if you are going to add more images here, you may want to play about with the vspace attributes so that the spacing is correct between images. ther should be around six pixels in between images
// other than that works as above
var setThree = new Array
setThree[0] = new Object()
setThree[0].url = "http://www.nufc.com/"
setThree[0].title = "<img src='/nufc-london/images/dotcom.gif' width='116' height='23' hspace='0' vspace='6' border='0' alt='' style='border: 1px solid #333333;'>"

setThree[1] = new Object()
setThree[1].url = "http://www.nufc.co.uk"
setThree[1].title = "<img src='/nufc-london/images/dotcouk.gif' width='116' height='23' border='0' alt='' hspace='0' vspace='6'>"

setThree[2] = new Object()
setThree[2].url = "http://www.true-faith.co.uk"
setThree[2].title = "<img src='/nufc-london/images/truefaith.jpg' width='116' height='31' hspace='0' vspace='0' border='0' alt=''>"

setThree[3] = new Object()
setThree[3].url = "http://www.newcastle-united-supporters-club.co.uk/"
setThree[3].title = "<img src='/nufc-london/images/nusc.jpg' width='116' height='63' border='0' alt='' hspace='0' vspace='6'>"

setThree[4] = new Object()
setThree[4].url = "http://www.nufc-forum.com"
setThree[4].title = "<img src='/nufc-london/images/geordieAngel_nightTime.gif' width='116' height='23' border='0' alt='' hspace='0' vspace='6'>"
