function hilight(src)
{
	//Check the parent TD object to see if it is selected
//	if(src.className==&quot;HoverMenuItem&quot;){
//		src.parentElement.className=&quot;MenuCell&quot;;
//		src.className=&quot;MenuItem&quot;;
//	}else if(src.className==&quot;MenuItem&quot;){
//		src.parentElement.className=&quot;HoverMenuCell&quot;;
//		src.className=&quot;HoverMenuItem&quot;;
//	}
}

function setselected(src)
{
/*
	var menuitems = document.all(menutable); //Get the TR element that makes up the menu
	var pos=0;
	
	//Set all TD tags to be the default 'MenuCell' style
	//Set children of TD tags to be 'MenuItem' style
	for(pos=0;pos&lt;menutable.children.length;pos++)
	{
		menutable.children[pos].className=&quot;MenuCell&quot;;
		menutable.children[pos].children[0].className=&quot;MenuItem&quot;;
	}
	
	//Set the selected TD to be 'SelectedMenuCell' style
	//Set the child of the selected TD to be 'SelectedMenuItem' style
	src.className=&quot;SelectedMenuCell&quot;;
	src.children[0].className=&quot;SelectedMenuItem&quot;;
	*/
}
