jQuery(document).ready(function(){
 
	jQuery("#ShareAreaContainer ul li a").hover(function() {
	jQuery(this).next("em").stop(true, true).show();
	}, function() {
	jQuery(this).next("em").hide();
	});
jQuery(".ShareAreaContainerNews ul li a").hover(function () {
    jQuery(this).next("em").stop(true, true).show();
}, function () {
    jQuery(this).next("em").hide();
});

});
