$(document).ready(function() {

    var sPath = window.location.pathname;
    var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
    sPage = "h" + sPage.toLowerCase().replace(".aspx", "");
    
   $('#navigationExt').css("height",$('#content').height());
    
    $("." + sPage + " .divHover").show();

    $("#ulNav li:not(." + sPage + ")").hover(
        function() {
            $(this).find('.divHover').animate({ 
                opacity: "show"
              }, 600 );

	    }, 
	    function () {
            $(this).find('.divHover').animate({ 
                opacity: "hide"
              }, 370 );
	    }
    );    
    

   
});
