$(document).ready(function(){

	$(".b4 a").hover(
		function() {
			$(this).next("em").stop(true, true).animate({opacity: "show", top: "33"}, "slow");
		},
		function() {
			$(this).next("em").stop(true, true).animate({opacity: "show", top: "33"}, "slow");

///			$(this).next("em").animate({opacity: "hide", top: "43"}, "100");
		}
	);

});
