$(document).ready(function(){
						   
	$(".popup a").hover(function() {
		$(this).next("em").stop(true, true).animate({opacity: "show", top: "0"}, "slow");
		}, function() {
		$(this).next("em").animate({opacity: "hide", top: "-10"}, "fast");
	});

	$(".popup a").hover(function() {
		$(this).next("strong").stop(true, true).animate({opacity: "show", top: "110"}, "slow");
		}, function() {
		$(this).next("strong").animate({opacity: "hide", top: "100"}, "fast");
	});

 	$(".popup a").hover(function() {
		$(this).next("i").stop(true, true).animate({opacity: "show", top: "40", left: "10"}, "slow");
		}, function() {
		$(this).next("i").animate({opacity: "hide", top: "30", left: "10"}, "fast");
	});


	$(".popup a").hover(function() {
		$(this).next("b").stop(true, true).animate({opacity: "show", top: "-130", left: "-80"}, "slow");
		}, function() {
		$(this).next("b").animate({opacity: "hide", top: "-140", left: "-80"}, "fast");
	});


});