
//controls rollovers as well as comments in status bars
<!--Begin

//load images into the array ready for the onmouseover functions:
{
	//first box
	a1 = new Image(200,175); 	a1.src = "images/a1.gif";
	a2 = new Image(200,175); 	a2.src = "images/a2.gif";
	//second box
	b1 = new Image(200,175); 	b1.src = "images/b1.gif";
	b2 = new Image(200,175); 	b2.src = "images/b2.gif";
	//third box
	c1 = new Image(200,175); 	c1.src = "images/c1.gif";
	c2 = new Image(200,175); 	c2.src = "images/c2.gif";
	//fourth box
	d1 = new Image(200,175); 	d1.src = "images/d1.gif";
	d2 = new Image(200,175); 	d2.src = "images/d2.gif";
}
//swap my images function:
	function hiLite(imgDocID, imgObjName, comment) {
		{
			document.images[imgDocID].src = eval(imgObjName + ".src");
			window.status = comment; return true;
		}
}
//End!-->