<!--
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">Yates Bar</SPAN><BR><BR>';
textarray[0]+= 'OK, OK so its another Yates bar, but in Donni - it rules!<BR><BR>';
textarray[0]+= 'It offers the same fine range of drinks and music, but because its that big we can all get in and drink knowing full well that none of us will get the \'Beer Splashes of Death\' down the shirts that our mothers ironed an hour beforehand.  Lads know what we are talking about. As soon as a fine lady sees even a hint of wet stain, you\'ve had it you beer swilling lout. Women can be so cruel at times...snif..sniff.';
beerarray[0] = 'gifs/beer4.jpg';
cdarray[0] = 'gifs/cd4.gif';
girlarray[0] = 'gifs/girl3.gif';

placearray[1] = 'gifs/2ndplace.gif';
textarray[1] = '<SPAN CLASS="PubTitle">The Old George</SPAN><BR><BR>';
textarray[1]+= 'This might look like a pub that your drunken uncle might go to, but appearences can be deciving.<BR><BR>';
textarray[1]+= 'The beers OK and many ladies come and go for a quick one (drink that is!), but the DJ and the musci he plays is definitely spinning silver ball material.<BR><BR>';
beerarray[1] = 'gifs/beer3.jpg';
cdarray[1] = 'gifs/cd2.gif';
girlarray[1] = 'gifs/girl2.gif';

placearray[2] = 'gifs/3rdplace.gif';
textarray[2] = '<SPAN CLASS="PubTitle">Edwards Bar</SPAN><BR><BR>';
textarray[2]+= 'How did the Old George beat the Edwards Bar we hear you ask!?!  We basically its all down to heat.  Now you can call us pappy, but in Edwards they leave the bloody doors open and come winter time its bloody freezing!!<BR><BR>';
textarray[2]+= 'Apart from that, the place is cool.  Just never seems to get full with totty trips.';
beerarray[2] = 'gifs/beer3.jpg';
cdarray[2] = 'gifs/cd3.gif';
girlarray[2] = 'gifs/girl2.gif';

placearray[3] = 'gifs/4thplace.gif';
textarray[3] = '<SPAN CLASS="PubTitle">Berlins</SPAN><BR><BR>';
textarray[3]+= 'Probably gets our vote for the smokiest place in the world.  What do they think we are smoggies?!?!<BR><BR>';
textarray[3]+= 'Beer is close to transparent, music varies from happy hour to full on boom-boom-boom and the ladies can be very over friendly.  If you can survive the smog and you\'re desparate for women then - wahey!! - give it a go.<BR><BR>';
beerarray[3] = 'gifs/beer1.jpg';
cdarray[3] = 'gifs/cd2.gif';
girlarray[3] = 'gifs/girl3.gif';

placearray[4] = 'gifs/5thplace.gif';
textarray[4] = '<SPAN CLASS="PubTitle">The Black Bull</SPAN><BR><BR>';
textarray[4]+= 'The Black Bull.  God even the name sounds hard.  This pub is just one of those pubs that should be located near the coast and you need a password to get in.<BR><BR>';
textarray[4]+= 'We are of the belief that actual 18th century Whitby smugglers run the pub and if you don\'t drink up quick enough you are gang-banged and put on the next Mary Rose bound for Van Demon\'s Land!!<BR>(PLEASE NOTE: this may not be factually true)';
beerarray[4] = 'gifs/beer2.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)
}
}

// -->