<!--
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">Mozeppa</SPAN><BR><BR>';
textarray[0]+= 'This week\'s No.1 Pub in Rotherham. Offering plenty of traditional beers and weird cocktails a plenty. The music\'s a good mix of today\'s hits and golden oldies and the DJs aren\'t bad at requests. Totty can be wall-to-wall, so worth a pop in.<BR><BR>';
beerarray[0] = 'gifs/beer3.jpg';
cdarray[0] = 'gifs/cd4.gif';
girlarray[0] = 'gifs/girl4.gif';

placearray[1] = 'gifs/2ndplace.gif';
textarray[1] = '<SPAN CLASS="PubTitle">Elliots</SPAN><BR><BR>';
textarray[1]+= 'Elliots bar just pipped by Mozzepa this week due to it\'s poor Totty Quality. Beer is good and varied, but the jewel in Elliot\'s crown has to be their DJ.  One of the tallest, baldest and finest requests DJs in the whole of Rotherham.  So if you want a song blasted out that you haven\'t heard for ages - get down to this pub.<BR><BR>';
beerarray[1] = 'gifs/beer3.jpg';
cdarray[1] = 'gifs/cd5.gif';
girlarray[1] = 'gifs/girl2.gif';

placearray[2] = 'gifs/3rdplace.gif';
textarray[2] = '<SPAN CLASS="PubTitle">Millennium Bar</SPAN><BR><BR>';
textarray[2]+= 'Although the Millennium Bar removed it\'s comical \'I am very drunk and I want to sing Karaoke\' element, its amazing cocktail list ranks this as the 3rd best in Rotherham.<BR><BR>';
textarray[2]+= 'Due to the good music and cocktails available, many female vilda-beast frequent this watering hole. Worth a quick bottle.<BR><BR>';
beerarray[2] = 'gifs/beer4.jpg';
cdarray[2] = 'gifs/cd3.gif';
girlarray[2] = 'gifs/girl3.gif';

placearray[3] = 'gifs/4thplace.gif';
textarray[3] = '<SPAN CLASS="PubTitle">The Blue Coat</SPAN><BR><BR>';
textarray[3]+= 'The Blue Coat sneaks into 4th place, purely down to it\'s cheeky way of turning a dive (once the famous Feeofees) into a decent looking Pub.<BR><BR>';
textarray[3]+= 'Music is a big, fat ZERO, due to those damn Witherspoon people, but you just can\'t beat buying pints of beer at half the price!! Long live Witherspoons!!<BR><BR>';
beerarray[3] = 'gifs/beer4.jpg';
cdarray[3] = 'gifs/cd0.gif';
girlarray[3] = 'gifs/girl2.gif';

placearray[4] = 'gifs/5thplace.gif';
textarray[4] = '<SPAN CLASS="PubTitle">Yates Bar</SPAN><BR><BR>';
textarray[4]+= 'Is this giant of Pubs faltering and purely getting 5th spot because of it\'s past success, I ask myself.<BR><BR>';
textarray[4]+= 'Still a varied range of music and drinks, but the \'I can\'t bloody move in here!!\' problem is still the victim of it\'s success.<BR><BR>';
beerarray[4] = 'gifs/beer4.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)
}
}

// -->