
//controls rollovers as well as comments in status bars
<!--Begin

//load images into the array ready for the onmouseover functions:
{
	//first box
	home1 = new Image(200,100); 	home1.src = "images/home1.gif";
	home2 = new Image(200,100); 	home2.src = "images/home2.gif";
	//second box

}
//swap my images function:
	function hiLite(imgDocID, imgObjName, comment) {
		{
			document.images[imgDocID].src = eval(imgObjName + ".src");
			window.status = comment; return true;
		}
}
//End!-->