//JQuery 
  
  
  //to fix IE6 which doesn't support css hover command

//Tell the browser to change the background when hovered over
	function over(event) {
		$(this).css("background", "#537c53");
		$(this).find('ul').addClass("hover");
		$(this).find('ul').show();  //show subnav
		}
		//tell the browser to change the background to nothing when 
		//going outside the object area
		function out(event) {
			$(this).css("background", "#BEE0C1");
			$(this).css("color", "#000000");
			$(this).find('ul').removeClass("hover");
			$(this).find('ul').hide();   //hide subnav
		}	
		

  
 

