$(document).ready(function(){
 
	$(".categorypopup a").hover(function() {
	$(this).next("em").stop(true, true).animate({opacity: "show", bottom: "180"}, 10);
	}, function() {
	$(this).next("em").animate({opacity: "hide", bottom: "180"}, 10);
	});
	
 
});
