/**
 *  Setup the CBS Custom Rollover menus
 *
 *  Last edited 04 February 2006 by Amos Jeffries, (CBSNZ)
**/

function showMenu(mname, show)
{
	document.images.menuFlip.src= '/Images/'+ mname +'.gif';
	document.images.menuFlip.useMap = '#'+ mname + '_map';
	// update the status bar
	window.status=show;
	return false;
}

function rollover(id, img) {
	eval("document."+ id +".src='"+ img +"';");
	return;
}
