<!--
placearray=new Array()
textarray=new Array()
picarray=new Array()

placearray[0] = 'gifs/1stplace.gif';
textarray[0] = '<SPAN CLASS="FootieTitle">Song Title here</SPAN><BR>';
textarray[0]+= 'Band Name here';
picarray[0] = 'gifs/localchart1.gif';

placearray[1] = 'gifs/2ndplace.gif';
textarray[1] = '<SPAN CLASS="FootieTitle">Song Title here</SPAN><BR>';
textarray[1]+= 'Band Name here';
picarray[1] = 'gifs/localchart2.gif';

placearray[2] = 'gifs/3rdplace.gif';
textarray[2] = '<SPAN CLASS="FootieTitle">Song Title here</SPAN><BR>';
textarray[2]+= 'Band Name here';
picarray[2] = 'gifs/localchart3.gif';

placearray[3] = 'gifs/4thplace.gif';
textarray[3] = '<SPAN CLASS="FootieTitle">Song Title here</SPAN><BR>';
textarray[3]+= 'Band Name here';
picarray[3] = 'gifs/localchart4.gif';

//placearray[4] = 'gifs/5thplace.gif';
placearray[4] = 'gifs/spacer.gif';
textarray[4] = '<SPAN CLASS="FootieTitle">Currently no spotlights available</SPAN><BR>';
textarray[4]+= 'Please click on the link at the top of this page to send us your details. Who knows you may get seen by a football scout whilst playing or lovely girlies whilst out drinking!';
picarray[4] = 'gifs/spacer.gif';

thenum=0;

function FootieContent(daynum)
{
thenum=daynum;
document.Place.src=placearray[daynum];
document.getElementById('FootieText').innerHTML=textarray[daynum];
document.FootiePic.src=picarray[daynum];
}

function Previous(){
 if(thenum<textarray.length-1) {
// thenum++;FootieContent(thenum)
 }
}

function Next(){
if(thenum!=0){
// thenum--;FootieContent(thenum)
}
}

// -->