$(document).ready(function(){

	$("#wrap a").hover(function() {
		$(this).next("em").animate({opacity: "show", top: "-85"}, "slow"); /* default"-85" */
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "-95"}, "fast"); /* default"-95" */
	});


});　