jQuery(document).ready(function() {
//Dropdown Menu
    if(!jQuery.browser.msie){// IE  - 2nd level Fix
        jQuery("ul.topnav11").css({opacity:"0.95"});
    }
    jQuery(".topnav > li > ul").css({display: "none"}); // Opera Fix
    jQuery("ul.children").parent().append(""); //Only shows drop down trigger when js is enabled - Adds empty span tag after ul.subnav
    jQuery("ul.menu9 li a").hover(function() { //When trigger is clicked...
        //Following events are applied to the subnav itself (moving subnav up and down)
        jQuery(this).parent().find("ul.children").slideDown('fast').show(400); //Drop down the subnav on hover
        jQuery(this).parent().hover(function() {
        }, function(){
            jQuery(this).parent().find("ul.children").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up
        });
        //Following events are applied to the trigger (Hover events for the trigger)
        }).hover(function() {
            jQuery(this).addClass("subhover"); //On hover over, add class "subhover"
        }, function(){  //On Hover Out
            jQuery(this).removeClass("subhover"); //On hover out, remove class "subhover"
    });
  
})
