$(document).ready(function() {
    $("a").mouseover(function(){
      //$(this).effect("highlight",{},1000);
      $(this).slideDown();
    });
    $("#navbar").slideToggle(1500);
});
