(function($){
    $(document).ready(function(){
        $("#nav #nav-case-studies > a").click(function(ev){
            ev.preventDefault();
        });
        $("#nav li").hover(
            function() {
                $('ul', this).css('display', 'block');
            },
            function() {
                $('ul', this).css('display', 'none');
            }
        );
    });
})(jQuery); 

