jQuery.noConflict();
function mainmenu(){
	jQuery(" #topnav ul ").css({display: "none"}); // Opera Fix
	jQuery(" #topnav li").hover(
		function(){
			jQuery(this).find('ul:first:hidden').css({visibility: "visible",display: "none"}).show(400);
			if (jQuery(this).is(".parent")) {
				jQuery(this).find('a:first').css({color: "#224272",fontWeight: "bold"});
			}
		},
		function(){
			jQuery(this).find('ul:first').css({visibility: "hidden"});
			if (jQuery(this).is(".parent")) {
				jQuery(this).find('a:first').css({color: "#666",fontWeight: "normal"});
			}

		}
	);
}
jQuery(document).ready(function(){
	mainmenu();
});