 $(document).ready(function() {
    
$(".link").mouseover(function () {
 		$(this).hide("drop", { direction: "down" }, 1000);
		$(this).show("slide", { direction: "down" }, 1000);
});

		
  });
