/**************************************************************
	FILE:			image.js

	DESCRIPTION:	This file contains javascript to preload
					images and control image rollovers
					
<script type="text/javascript" src="/scripts/image.js"></script>
	
***************************************************************/


/**
 * changeImage()
 *
 * This function changes the source of the object
 * specified to the image specified
 *
 *
 * VARIABLES:
 *	imageName:	The name of the image object in the DOM
 *				
 *	newSource:	Path to the new source for the image
 */
function changeImage(imageName, imageSource)
{
	document.images[imageName].src = imageSource;
}
