<!--
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">Tommy Wallocks</SPAN><BR><BR>';
textarray[0]+= 'Sorry to be so juvenile, but we just made it No.1 because we love the name.<BR><BR>';
textarray[0]+= 'Er....we just love the name!<BR><BR>';
beerarray[0] = 'gifs/beer2.jpg';
cdarray[0] = 'gifs/cd2.gif';
girlarray[0] = 'gifs/girl2.gif';

placearray[1] = 'gifs/2ndplace.gif';
textarray[1] = '<SPAN CLASS="PubTitle">Yates Bar</SPAN><BR><BR>';
textarray[1]+= 'AAAARRRRGGGHH....another Yates Bar.<BR><BR>';
textarray[1]+= 'This one\'s a good one though and the drinks seem to be the least watered down in Barnsley.  Take our advice - have as many in this Pub as possible.  You will get the much needed alcohol content that you crave on your night out!!<BR><BR>';
beerarray[1] = 'gifs/beer3.jpg';
cdarray[1] = 'gifs/cd3.gif';
girlarray[1] = 'gifs/girl2.gif';

placearray[2] = 'gifs/3rdplace.gif';
textarray[2] = '<SPAN CLASS="PubTitle">Sports Bar</SPAN><BR><BR>';
textarray[2]+= 'Music\'s OK and so is the beer, but not much choice.  Best thing really about the Pub is that shows SkySports on about 15 teles!<BR><BR>';
textarray[2]+= 'TIP: go to this pub in the summer, as it is freezing in this place!<BR><BR>';
beerarray[2] = 'gifs/beer3.jpg';
cdarray[2] = 'gifs/cd0.gif';
girlarray[2] = 'gifs/girl2.gif';

placearray[3] = 'gifs/4thplace.gif';
textarray[3] = '<SPAN CLASS="PubTitle">O\'Neills</SPAN><BR><BR>';
textarray[3]+= 'Good pub for a quick drink of the old Guiness or Murphys, but nothing else.<BR><BR>';
textarray[3]+= 'Music is played at a level that only cats can hear and you\'ll be lucky to find a femme fatale even behind the bar!<BR><BR>';
beerarray[3] = 'gifs/beer4.jpg';
cdarray[3] = 'gifs/cd1.gif';
girlarray[3] = 'gifs/girl0.gif';

placearray[4] = 'gifs/5thplace.gif';
textarray[4] = '<SPAN CLASS="PubTitle">The Theatre</SPAN><BR><BR>';
textarray[4]+= 'Now this place is bad, but it gets in our listing for the experience factor.<BR><BR>';
textarray[4]+= 'If you\'ve seen those real-life documentaries where all the women are over 40 and all wear leopard skin and you want to see it for real then go here.  More alcohol content in the River Don. Music played would make Elvis struggle to know the words and the Totty is very much vintage. Nuff said!<BR><BR>';
beerarray[4] = 'gifs/beer0.jpg';
cdarray[4] = 'gifs/cd1.gif';
girlarray[4] = 'gifs/girl0.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)
}
}

// -->