	 $(document).ready(function(){
		if($.browser.msie){
		// Create a drop-down menu for IE
		
		$("#navigation li.top").hover(function () {
  			  //$(this).find('ul').addClass('on');
			  $(this).addClass('hover');
			  $(this).height("20em");
 			 },
 			 function () {
			  //$(this).find('ul').removeClass('on');
			  $(this).removeClass('hover');
			  $(this).height("3em");
  			}
		)
		
		$("button").hover(function () {$(this).addClass('hover');},
 			 function () {$(this).removeClass('hover');}
		)
		}//end IE
		
		//maintain the first hierarchy links hovered
		
		$("#navigation li ul").hover(
  			function () {$(this).parent().addClass('hover');},
 			 function () {$(this).parent().removeClass('hover');}
		)
	 });