//**********************************************************
// Standard rollover code used throughout the site
// Jeff Chew
//**********************************************************

// imagename = name of the image within the jsp file
// imagestate = defines either the on or off state...typically the imagename + "On" or "Off"
function rollover(imagename,imagestate){
	document.images[imagename].src = eval(imagestate).src;
}
