
/* -------------------------------------------------------- 
		splash.js: included in <head>
   -------------------------------------------------------- */

var splashPath = 'images/splash/';

function hiliteSplash(imageName)
{
	//window.alert('hilite: imageName:' + imageName );
	document.images[imageName].src = splashPath + imageName + '_ro.png';
}

function turnOffSplash(imageName)
{
	//window.alert('hilite: imageName:' + imageName );
	document.images[imageName].src = splashPath + imageName + '.png';
}
