<!-- 

// System bar text

function statusSet(windowStatus) {
window.status = windowStatus
}
window.defaultStatus = ""

// Preloads

var imglist = new Array (
"images/forrestlogo_on.gif",
"images/thevalleyslogo_on.gif",
"images/thedoctorslogo_on.gif",
"images/jfclogo_on.gif",
"images/tattylogo_on.gif",
"images/newtonlogo_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){
   loadforrestlogo=new Image()
   loadforrestlogo.src='images/forrestlogo_on.gif'
   loadthevalleyslogo=new Image()
   loadthevalleyslogo.src='images/thevalleyslogo_on.gif'
   loadthedoctorslogo=new Image()
   loadthedoctorslogo.src='images/thedoctorslogo_on.gif'
   loadjfclogo=new Image()
   loadjfclogo.src='images/jfclogo_on.gif'
   loadtattylogo=new Image()
   loadtattylogo.src='images/tattylogo_on.gif'
   loadnewtonlogo=new Image()
   loadnewtonlogo.src='images/newtonlogo_on.gif'
}

//-->