$(document).ready(function() {
		
	// ie hover stuff
		$("#menu li").hover(
		        function() { $(this).addClass("hilight"); },
		        function() { $(this).removeClass("hilight"); }
		 );
		

    
		//drop down menu stuff
		$("#menu li.main").hover(
			function() { $(this).find(".submenu").show(); },
	        function() { $(this).not("[li.selected]").find(".submenu").slideUp("fast"); }
			
			
		);
		$("#menu li.selected").parent().show();
		
		if (jQuery.browser.msie) {
			// rounded corner subhead box
			$("ul#subhead").corner("round 6px");
		}
});

