$(document).ready(function(){

	$("ul.real-reveal li.cover").hover(function() {
	  $(this).find("#cover").animate({opacity: "hide", top: "200"}, "slow");
	    //$(this).find("ul li.cover").slideUp("slow");
	}, function() {
	  $(this).find("#cover").animate({opacity: "show", top: "0"}, "slow"); 
	});

});

