<!--
placearray=new Array()
textarray=new Array()
picarray=new Array()

if (document.images) {
 picarray[4] = new Image;
 picarray[4] = 'gifs/lassesyours/yourslasses-no5.jpg';
 picarray[3] = new Image;
 picarray[3] = 'gifs/lassesyours/yourslasses-no4.jpg';
 picarray[2] = new Image;
 picarray[2] = 'gifs/lassesyours/yourslasses-no3.jpg';
 picarray[1] = new Image;
 picarray[1] = 'gifs/lassesyours/yourslasses-no2.jpg';
 picarray[0] = new Image;
 picarray[0] = 'gifs/lassesyours/yourslasses-no1.jpg';
}

placearray[0] = 'gifs/1stplace.gif';
textarray[0] = '<SPAN CLASS="LassesTitle">Jennifer Lopez</SPAN><BR>';
textarray[0]+= 'Well shes here again.  Topping Steve\'s list, showing us all that she is every Lad\'s dream.';

placearray[1] = 'gifs/2ndplace.gif';
textarray[1] = '<SPAN CLASS="LassesTitle">Heidi Klum</SPAN><BR>';
textarray[1]+= 'Good choice Steve. If we knew all German girls would have been this beautiful we\'d have surrendered the country to them years ago!';

placearray[2] = 'gifs/3rdplace.gif';
textarray[2] = '<SPAN CLASS="LassesTitle">Penelope Cruz</SPAN><BR>';
textarray[2]+= 'How dare Steve put this Spanish beauty in such a lowly position! Look at her definitive cheek bones for God\'s sake!';

placearray[3] = 'gifs/4thplace.gif';
textarray[3] = '<SPAN CLASS="LassesTitle">Katie Holmes</SPAN><BR>';
textarray[3]+= 'Aaahh, Dawson\'s Creek\'s finest angel.  The lovely Katie would be a father-in-law\'s dream - not to mention his sons!!';

placearray[4] = 'gifs/5thplace.gif';
textarray[4] = '<SPAN CLASS="LassesTitle">Rebecca Romijn-Stamos</SPAN><BR>';
textarray[4]+= 'We think Steve was taking the pith when he asked us to list this one.  Oh don\'t get us wrong she is nice, but you try finding a picture of her - bloody hell!!';

thenum=0;

function LassesContent(daynum)
{
thenum=daynum;
document.Place.src=placearray[daynum];
document.getElementById('LassesText').innerHTML=textarray[daynum];
document.LassesPic.src=picarray[daynum];
}

function Previous(){
 if(thenum<textarray.length-1) {
 thenum++;LassesContent(thenum)
 }
}

function Next(){
if(thenum!=0){
thenum--;LassesContent(thenum)
}
}

// -->