<!--
placearray=new Array()
textarray=new Array()
picarray=new Array()

if (document.images) {
 picarray[4] = new Image;
 picarray[4] = 'gifs/lassesworld/worldlasses-no5.jpg';
 picarray[3] = new Image;
 picarray[3] = 'gifs/lassesworld/worldlasses-no4.jpg';
 picarray[2] = new Image;
 picarray[2] = 'gifs/lassesworld/worldlasses-no3.jpg';
 picarray[1] = new Image;
 picarray[1] = 'gifs/lassesworld/worldlasses-no2.jpg';
 picarray[0] = new Image;
 picarray[0] = 'gifs/lassesworld/worldlasses-no1.jpg';
}

placearray[0] = 'gifs/1stplace.gif';
textarray[0] = '<SPAN CLASS="LassesTitle">Penelope Cruz</SPAN><BR>';
textarray[0]+= 'OK, OK so she might not actually be American, but she works in US films, she\'s got a US boyfriend and she\'s the unofficial Bee\'s Bollocks';

placearray[1] = 'gifs/2ndplace.gif';
textarray[1] = '<SPAN CLASS="LassesTitle">Rachel Leigh Cook</SPAN><BR>';
textarray[1]+= 'You might not have seen much of this US beatuy, but as our picture shows she is Top Totty - Top Dog Breeder';

placearray[2] = 'gifs/3rdplace.gif';
textarray[2] = '<SPAN CLASS="LassesTitle">Denise Richards</SPAN><BR>';
textarray[2]+= 'Yes, the ex-Bond girl gets our vote for No.3, even if its just for this picture alone';

placearray[3] = 'gifs/4thplace.gif';
textarray[3] = '<SPAN CLASS="LassesTitle">Jennifer Lopez</SPAN><BR>';
textarray[3]+= 'What kind of US babe chart would this be without the diva with the fever (or other things that rhyme with diva..wink..wink!!)';

placearray[4] = 'gifs/5thplace.gif';
textarray[4] = '<SPAN CLASS="LassesTitle">Jennifer Love Hewitt</SPAN><BR>';
textarray[4]+= 'Ohh..we just love Hewitt';

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)
}
}

// -->