<!--

// switches on the appropriate menu items when page is loaded
var theItem;
var imgName;

function turnMenuOn(titleSuff,titleChrs,menuSuff)
{

	for (i = 0; i < document.images.length; i++)
	{
		imgName = document.images[i].name;
		if (imgName.substr(0,titleChrs) == titleSuff)
		{
			theItem = imgName.substring(titleChrs,imgName.length);
			cmd1 = 'document.' + menuSuff + theItem + '.src= "../images/' + menuSuff + theItem + '_mouseover.gif"';
			eval(cmd1);
		}
	}
}

//-->

