$(document).ready(function() {
        // Hide submenus (if js enabled)
        $("#menuh li ul").hide(); 
        // Assign behaviour to hover event (mouseover, mouseout)
        // fadeIn and Out are a bit messy. just show and hide.
        $("#menuh li").hover(
            function () {
	            $(this).children('ul').css("z-Index", 10);
	            //$(this).children('ul').fadeIn("slow");
	            $(this).children('ul').show();
            	},function(){
            	//$(this).children('ul').fadeOut("fast");
            		$(this).children('ul').hide();
        });
        // Don't fire top nav anchor click event (if js is enabled)
        $("#menuh li a.topNavH").click(
                function(e) {
                    e.preventDefault();
                }
        ); //click
    }); // DOM ready
