// JavaScript Document
//
//	Swap Image for images
	function swapImage(imgName,newImg) {
		eval('document.' + imgName + '.src = "' + newImg + '"');
		} 	// End SwapImage
//	

