jQuery.noConflict();
jQuery(document).ready(function(){
 
	jQuery("#share a").hover(function() {
	jQuery(this).next("div").stop(true, true).animate({opacity: "show", top: "-25"}, "fast");
	}, function() {
	jQuery(this).next("div").animate({opacity: "hide", top: "-35"}, "slow");
	});
	jQuery(".profile_share a").hover(function() {
	jQuery(this).next("div").stop(true, true).animate({opacity: "show", top: "-25"}, "fast");
	}, function() {
	jQuery(this).next("div").animate({opacity: "hide", top: "-35"}, "slow");
	});
 
});