var $j = jQuery.noConflict();

$j(document).ready(function(){
 
	$j(".hclub-pop a").hover(function() {
	$j(this).next("em").stop(true, true).animate({opacity: "show", top: "-60"}, "slow");
	}, function() {
	$j(this).next("em").animate({opacity: "hide", top: "-70"}, "fast");
	});
 
});
