///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
	// Rollover Script - (03/2003)

	// Interbaun Communications Inc. 
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////


if (document.images) {
	// Button One
	var buttononeoff = new Image();  // Create a variable for the 'off' state of the link 
	buttononeoff.src = "images/menuMain_16-off.jpg";// Path to the actual 'off' image
	var buttononeon = new Image();  // Create a variable for the 'on' state of the link
	buttononeon.src = "images/splash_16-on.jpg";    // Path to the actual 'on' image

	//Button Two
	var buttontwooff = new Image();
	buttontwooff.src = "images/menuMain_19-off.jpg";
	var buttontwoon = new Image();
	buttontwoon.src = "images/splash_19-on.jpg";
	
	// Button Three
	var buttonthreeoff = new Image();
	buttonthreeoff.src = "images/menuMain_20-off.jpg";
	var buttonthreeon = new Image();
	buttonthreeon.src = "images/splash_20-on.jpg" ;
	
	// Button Four
	var buttonfouroff = new Image();
	buttonfouroff.src =  "images/menuMain_21-off.jpg";
	var buttonfouron = new Image();
	buttonfouron.src = "images/splash_21-on.jpg";
}


// Creates a function for the 'on' state when the mouse is over the image
function act(imgName) {
	if (document.images)
	document[imgName].src = eval(imgName + 'on.src');	
}


// Creates a function for the 'off' state when the mouse is not over the image
function inact(imgName) {
	if (document.images)
	document[imgName].src = eval(imgName + 'off.src');
} 