/* Another mouseover function that changes an object's source by stripping it from another object.  The objects used as new sources are loaded onto the page with their visibility set to "hidden". */




function newimage(object1, object2) {

	var oldobject = document.getElementById(object1);
	var newobject = document.getElementById(object2);

	var newsrc = newobject.src;

	oldobject.src = newsrc;

	}	