<!-- 

// System bar text

function statusSet(windowStatus) {
window.status = windowStatus
}
window.defaultStatus = ""

// Preloads

var imglist = new Array (
"images/forrest_on.gif",
"images/doctors_on.gif",
"images/valleys_on.gif",
"images/newton_on.gif",
"images/tatty_on.gif",
"images/jfc_on.gif",
"images/accolades_on.gif",
"images/specialoffers_on.gif"
);

var imgs = new Array();

var count
if (document.images)

 for (count=0; count<imglist.length; count++)
    {imgs[count]=new Image(); imgs[count].src=imglist[count];}

// Navigation buttons

if(document.images){
   loadforrest=new Image()
   loadforrest.src='images/forrest_on.gif'
   loaddoctors=new Image()
   loaddoctors.src='images/doctors_on.gif'
   loadvalleys=new Image()
   loadvalleys.src='images/valleys_on.gif'
   loadnewton=new Image()
   loadnewton.src='images/newton_on.gif'
   loadtatty=new Image()
   loadtatty.src='images/tatty_on.gif'
   loadjfc=new Image()
   loadjfc.src='images/jfc_on.gif'
   loadaccolades=new Image()
   loadaccolades.src='images/accolades_on.gif'
   loadspecialoffers=new Image()
   loadspecialoffers.src='images/specialoffers_on.gif'
}

//-->