$(document).ready(function(){
  	$(".ebav").hover(function() {
		$(this).next("em").animate({opacity: "show", top: "-28"}, "slow");
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "-75"}, "fast");
	});
 });
  

