$(function() {
		  
    $(".articleTools a").hover(function() {
		$(this).next("em").animate({opacity: "show", top: "-38"}, "slow");
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "-48"}, "fast");
	});


	$("#modalEmail").colorbox({fixedWidth:884, fixedHeight:341, iframe:true, href:"/tools/email/"});

});