$(document).ready(function(){
 
	$(".popup-01 a").hover(function() {
	$(this).next("em").stop(true, true).animate({opacity: "show", top: "-110"}, "slow");
	}, function() {
	$(this).next("em").animate({opacity: "hide", top: "-140"}, "fast");
	});
 
});

$(document).ready(function(){
 
	$(".popup-02 a").hover(function() {
	$(this).next("em").stop(true, true).animate({opacity: "show", top: "-110"}, "slow");
	}, function() {
	$(this).next("em").animate({opacity: "hide", top: "-140"}, "fast");
	});
 
});

$(document).ready(function(){
 
	$(".popup-03 a").hover(function() {
	$(this).next("em").stop(true, true).animate({opacity: "show", top: "-110"}, "slow");
	}, function() {
	$(this).next("em").animate({opacity: "hide", top: "-140"}, "fast");
	});
 
});