$(document).ready(function(){
 
	$(".menu a").hover(function() {
		$(this).next("em").animate({opacity: "show"}, "slow");
	}, function() {
		$(this).next("em").animate({opacity: "hide"}, "fast");
	});
 
 
});
$(document).ready(function(){
		$("#featured > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 10000, true);
	});