$(document).ready(function(){ 	$(".coming-soon a").hover(function() {		$(this).next("em").stop(true, true).animate({opacity: "show", bottom: "-50"}, "slow");	}, function() {		$(this).next("em").animate({opacity: "hide", bottom: "-55"}, "fast");	}); });
