// JavaScript Document

$(document).ready(function(){

	$(".hover a").hover(function() {
	  $(this).next("em").animate({opacity: "show",}, "slow");
	}, function() {
	  $(this).next("em").animate({opacity: "hide",}, "slow");
	});

});