$(document).ready(function(){
	$(".info-popup img").hover(function() {
	$(this).next("em").stop(true, true).animate({opacity: "show", bottom: "-160"}, "slow");
	}, function() {
	$(this).next("em").animate({opacity: "hide", bottom: "-140"}, "fast");
	});

});