// JavaScript Document

$(document).ready(function(){
 
	$(".nav a").hover(function() {
		$(this).next("em").animate({opacity: "show", top: "-60"}, "slow");
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "-80"}, "fast");
	});
 
 
});
