/***************************************************************************************************
 CHANGE LOG

 MODIFIED BY		MODIFIED DATE		DESCRIPTION
 S. Melo			2007-01-03			Script Created
****************************************************************************************************/

/*
 This function changes the image when the user hovers over the link with their mouse.  This function
 receives the id the image element and the file path for the new image.
*/
function rolloverOn(id,src)
{
	document.images[id].src=src;
}

/*
 This function changes the image to the original image when  the user hovers over the link with their mouse.  This function
 receives the id the image element and the file path for the original image.
*/
function rolloverOff(id,src)
{
	document.images[id].src=src;
}
