		/**
			Performs the mouse-overing for ranchweb menus, note this stuff only works in IE 
		**/
		var MOUSEOVER_COLOR = '#CCCC99';
		var MOUSEOUT_COLOR = '#999966';
		var MOUSEOVER_COLOR2 = '#FBB46D';
		var MOUSEOUT_COLOR2 = '#FF9933';
		
		function menuMouseOver(src)
		{
			if (!src.contains(event.fromElement))
			{ src.style.cursor = 'hand'; src.bgColor = MOUSEOVER_COLOR; }
		}
		function menuMouseOut(src,clrIn)
		{
			if (!src.contains(event.toElement))
			{ src.style.cursor = 'default'; src.bgColor = MOUSEOUT_COLOR; }
		}
		function menuMouseOver2(src)
		{
			if (!src.contains(event.fromElement))
			{ src.style.cursor = 'hand'; src.bgColor = MOUSEOVER_COLOR2; }
		}
		function menuMouseOut2(src,clrIn)
		{
			if (!src.contains(event.toElement))
			{ src.style.cursor = 'default'; src.bgColor = MOUSEOUT_COLOR2; }
		}
		function menuClick(src)
		{
			if(event.srcElement.tagName=='TD')
			{ src.children.tags('A')[0].click(); }
		}