/**************************************************************
	FILE:			Image.js

	DESCRIPTION:	This file contains javascript to preload
					images and control image rollovers
					
<script type="text/javascript" src="/RockBottomWeb/Includes/Image.js"></script>
	
***************************************************************/


/**
 * changeImage()
 *
 * This function changes the source of the object
 * specified to the image specified
 *
 * VERSIONS:
 *	09.20.2002 by murray@gordon.org
 *		Wrote original function.
 *
 * 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;
}
