$(function(){
    $("#topNavMenu li").mouseover(
        function(){
            $(".subNav").removeClass('persist').hide();
            var sel = "#"+this.id+"_sub";
            sub = $(sel);
            if(sub !== undefined){
                $(sub).show();
            }
        }
    );

    $("#body").mouseover(
        function(){
            $(".subNav").not('.persist').hide();
        }
    );

    $(".subNav a").bind('mouseover,mouseout',
        function(){
            $(this).closest('.subNav').stop(true).show();
        }
    );

    $("#quickLinks").change(
        function(){
            opt = $(this).children("option:selected").val();
            if(opt !== ''){
                window.location = opt;
            }
        }
    );
});
