<!--
function doMenu(what,which,txt) {
	var txtBit;
	var how;
	if (which =='homemenuimage')
	{
		how = 'hidden';
	}
	else
	{
		how = 'visible';
	}
	what.className= which;
	txtBit = what.id+'Txt';
	eval(txtBit).style.visibility = how;
}
-->
