
	function navMouseOut(elem, idname)
	{
		var tdElem = document.getElementById(idname);
		tdElem.style.backgroundColor='';
		elem.style.color='#003399';	
	}	
	
	function navMouseOver(elem, idname)
	{
		var tdElem = document.getElementById(idname);
		tdElem.style.backgroundColor='#990033';
		elem.style.color='#FFFFCC';
	}
	
