$(function(){  // $(document).ready shorthand
  $('#showcase').hide().fadeIn(1500);
    $('#footer').hide().fadeIn(700);
});

$(function(){  // $(document).ready shorthand
  $('#showcase-news').hide().fadeIn(1500);
    $('#footer').hide().fadeIn(700);
});




$(document).ready(function () { 
    $('.sub-menu').hide();
     
    $('.menu li').hover(
        function () {
            //show its submenu
            $('ul', this).slideDown(100);
 
        }, 
        function () {
            //hide its submenu
            $('ul', this).slideUp(100);         
        }
    );
     
});


