$(document).ready(function(){
 
	$(".icon1").hover(function() {
	//alert('hey');
	$(this).next("em").stop(true, true).animate({opacity: "show"}, "slow");
	}, function() {
	$(this).next("em").animate({opacity: "hide"}, "fast");
	});
 	
 	
 	
 
 	
 
});