<!--
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">Corner Pocket</SPAN><BR><BR>';
textarray[0]+= 'The beer is OK and they do have music, but no women come in.<BR><BR>';
textarray[0]+= 'Best thing about this pub is that it has stacks of proper snooker tables that you can play on<BR><BR>';
beerarray[0] = 'gifs/beer3.jpg';
cdarray[0] = 'gifs/cd3.gif';
girlarray[0] = 'gifs/girl0.gif';

placearray[1] = 'gifs/2ndplace.gif';
textarray[1] = '<SPAN CLASS="PubTitle">New Masons Arms</SPAN><BR><BR>';
textarray[1]+= 'Great pub to meet all of Mexborough.  I think everybody who lives in Mexborough must go in that pub at some time or another on Friday night.<BR><BR>';
textarray[1]+= 'Only problem is that becuase of this if you aren\'t from Mexborough people know striaght away so you might get your head kicked in.';
beerarray[1] = 'gifs/beer4.jpg';
cdarray[1] = 'gifs/cd3.gif';
girlarray[1] = 'gifs/girl3.gif';

placearray[2] = 'gifs/3rdplace.gif';
textarray[2] = '<SPAN CLASS="PubTitle">Henry\'s Cafe Bar</SPAN><BR><BR>';
textarray[2]+= 'This is probably the flashiest pub in Mexborough.<BR><BR>';
textarray[2]+= 'Looks a bit like a nightclub, but far too small to be one. This is probably the only pub where you would see a group of single lasses.';
beerarray[2] = 'gifs/beer2.jpg';
cdarray[2] = 'gifs/cd3.gif';
girlarray[2] = 'gifs/girl4.gif';

placearray[3] = 'gifs/4thplace.gif';
textarray[3] = '<SPAN CLASS="PubTitle">Montagu Arms</SPAN><BR><BR>';
textarray[3]+= 'This gets my 4th place, purely for the Japanese culture nights that they put on.  That culture being Karaoke of course!<BR><BR>';
textarray[3]+= 'To be honest, there are quite a number of good singers who come along and as its in the middle of town its worth going.<BR><BR>';
beerarray[3] = 'gifs/beer3.jpg';
cdarray[3] = 'gifs/cd5.gif';
girlarray[3] = 'gifs/girl2.gif';

placearray[4] = 'gifs/5thplace.gif';
textarray[4] = '<SPAN CLASS="PubTitle">Miners Arms</SPAN><BR><BR>';
textarray[4]+= 'Just thought I would putthis because my dad goes in.<BR><BR>';
textarray[4]+= 'To be honest, I believe that its turning into a gay bar now, so he might not go in as much.  As well as this going down a storm, in our kind of town its also too far away for anybody to bother going to. Especially lasses.<BR><BR>';
beerarray[4] = 'gifs/beer1.jpg';
cdarray[4] = 'gifs/cd0.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)
}
}

// -->