$(document).ready(function(){
    $("ul.drop").hide();
    $("li.dropdown").hover(
        function(){
            $("ul.drop", this).fadeIn("fast");
        },
        function(){
            $("ul", this).fadeOut("fast");
        }
    );
});

function resizeHeader(val) {
    $('#headerContainer').height(val);
    $('#shell_header').height(val);
}
function resizeFooter(val) {
    $('#footerContainer').height(val);
    $('#shell_footer').height(val);
}

