<!--
placearray=new Array()
textarray=new Array()
beerarray=new Array()
cdarray=new Array()
girlarray=new Array()

placearray[0] = 'gifs/1stplace.gif';
textarray[0] = '<SPAN CLASS="PubTitle">Cavendish</SPAN><BR><BR>';
textarray[0]+= 'The student pub of all student pubs.<BR><BR>';
textarray[0]+= 'Still offers a great range of beers and cocktails.  Still offers good music and still offers lovely educated young ladies!!  Problem is there all bloody students - we hate students!! No.1 this week.<BR><BR>';
beerarray[0] = 'gifs/beer5.jpg';
cdarray[0] = 'gifs/cd3.gif';
girlarray[0] = 'gifs/girl4.gif';

placearray[1] = 'gifs/2ndplace.gif';
textarray[1] = '<SPAN CLASS="PubTitle">O\'Neills</SPAN><BR><BR>';
textarray[1]+= 'Another pub that offers a great range of tipples.  Music\'s not bad either. Shame girlies think it\'s a dirty old man pub - damn!<BR><BR>';
beerarray[1] = 'gifs/beer4.jpg';
cdarray[1] = 'gifs/cd3.gif';
girlarray[1] = 'gifs/girl1.gif';

placearray[2] = 'gifs/3rdplace.gif';
textarray[2] = '<SPAN CLASS="PubTitle">All Bar One</SPAN><BR><BR>';
textarray[2]+= 'This has to be *the* poshist pub in Sheffield.  Where else can you get a fine stout drink of lager and a fine glass of red Rioja in the same place?<BR><BR>';
textarray[2]+= 'Although the drinks and music are OK, the Totty factor really is set to educated quality rather than quantity. This can be a hinderance, as they know every come on from a mile away - doh!<BR><BR>';
beerarray[2] = 'gifs/beer3.jpg';
cdarray[2] = 'gifs/cd2.gif';
girlarray[2] = 'gifs/girl3.gif';

placearray[3] = 'gifs/4thplace.gif';
textarray[3] = '<SPAN CLASS="PubTitle">Yates Bar</SPAN><BR><BR>';
textarray[3]+= 'Another Yates Bar! Bloody hell how many are there?<BR><BR>';
textarray[3]+= 'This one has to get a mention purely for the fact that its the best Yates Bar we\'ve been in (and we\'ve been in a lot!).<BR><BR>';
beerarray[3] = 'gifs/beer3.jpg';
cdarray[3] = 'gifs/cd3.gif';
girlarray[3] = 'gifs/girl2.gif';

placearray[4] = 'gifs/5thplace.gif';
textarray[4] = '<SPAN CLASS="PubTitle">T P Woods</SPAN><BR><BR>';
textarray[4]+= 'T P Woods seems to offer everything, but will always be classed as the \'first drink\' pub.<BR><BR>';
textarray[4]+= 'You\'re not drunk enough, Totty aren\'t drunk enough and that bloody \'Who wants to be a Milloniare\' game takes all your bloody beer money.<BR><BR>';
beerarray[4] = 'gifs/beer3.jpg';
cdarray[4] = 'gifs/cd3.gif';
girlarray[4] = 'gifs/girl1.gif';

thenum=0;

function PubContent(daynum)
{
thenum=daynum;
document.Place.src=placearray[daynum];
document.getElementById('PubText').innerHTML=textarray[daynum];
document.Beer.src=beerarray[daynum];
document.CD.src=cdarray[daynum];
document.Girl.src=girlarray[daynum];
}

function Previous(){
 if(thenum<textarray.length-1) {
 thenum++;PubContent(thenum)
 }
}

function Next(){
if(thenum!=0){
thenum--;PubContent(thenum)
}
}

// -->