jQuery(document).ready(function(){
	jQuery("ul.topnav li").hover(
	    function(){
                jQuery(this).not(".searchbox").attr("class","over");
                jQuery(this).removeAttr("style");
                jQuery(this).find("a").removeAttr("style");
	            jQuery(this).find("ul.subnav").show(); //Drop down the subnav on click
		}, function(){
		       jQuery(this).not(".searchbox").attr("class","out");
		        if(jQuery(this).attr("style1")!="")
		            jQuery(this).attr("style",jQuery(this).attr("style1"));
		        if(jQuery(this).find("a").attr("style1")!="")
		            jQuery(this).find("a").attr("style",jQuery(this).find("a").attr("style1"));
			    jQuery(this).find("ul.subnav").hide(); //When the mouse hovers out of the subnav, move it back up
		});
});
