jQuery(document).ready(function(){

  jQuery("div.drop").css({'display' : 'none'});

  jQuery("ul#pbk-mega-menu > li").hover(function(){
     jQuery('div', this).stop(true,true).fadeIn();
  }, function() {
	jQuery('div', this).stop(true,true).fadeOut();
 });



});
