<!--
placearray=new Array()
textarray=new Array()
picarray=new Array()

if (document.images) {
 picarray[4] = new Image;
 picarray[4] = 'gifs/lassesuk/uklasses-no5.jpg';
 picarray[3] = new Image;
 picarray[3] = 'gifs/lassesuk/uklasses-no4.jpg';
 picarray[2] = new Image;
 picarray[2] = 'gifs/lassesuk/uklasses-no3.jpg';
 picarray[1] = new Image;
 picarray[1] = 'gifs/lassesuk/uklasses-no2.jpg';
 picarray[0] = new Image;
 picarray[0] = 'gifs/lassesuk/uklasses-no1.jpg';
}

placearray[0] = 'gifs/1stplace.gif';
textarray[0] = '<SPAN CLASS="LassesTitle">Ivana Horvat</SPAN><BR>';
textarray[0]+= 'She\'s the girl with the East European name and the looks to go with it. The ultimate in mystery mi\'lady quality - until she opens her cockney mouth that is.';

placearray[1] = 'gifs/2ndplace.gif';
textarray[1] = '<SPAN CLASS="LassesTitle">Kelly Brook</SPAN><BR>';
textarray[1]+= 'OK, so a 4 year old may have a better grasp of the English dictionary than our old Kel, but we\'re only interested in the body anyway!';

placearray[2] = 'gifs/3rdplace.gif';
textarray[2] = '<SPAN CLASS="LassesTitle">Louise</SPAN><BR>';
textarray[2]+= 'Ahhh Louise, Louise you really are a lovely lass.  But why won\'t you let pure Jamie-wamie play outside in the rain?';

placearray[3] = 'gifs/4thplace.gif';
textarray[3] = '<SPAN CLASS="LassesTitle">Cat Deeley</SPAN><BR>';
textarray[3]+= 'That tall brummie jumps into the No.4 spot looking rather purrrfect.  Did you see what we did there - did you? Play on words it was, brilliant! (ahem)';

placearray[4] = 'gifs/5thplace.gif';
textarray[4] = '<SPAN CLASS="LassesTitle">Nicola Willoughby</SPAN><BR>';
textarray[4]+= 'Nicola gets our No.5 this week, purely because she wouldn\'t leave us alone unless we put her in.  God shes annoying!!';

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)
}
}

// -->