jQuery(document).ready(function() {

	if(jQuery("#followIcons").height() > 0) {
		var name = "#followIcons";  
		var menuYloc = null;  
		
		menuYloc = parseInt(jQuery(name).css("top").substring(0,jQuery(name).css("top").indexOf("px")))  
		
		jQuery(window).scroll(function () { 
		
			var offset=0;
			var offsetInt=0;
			
			offsetInt = jQuery(document).scrollTop() + menuYloc;  
			offset = offsetInt+"px";
			
			jQuery(name).animate({top:offset},{duration:300,queue:false});  
		});
	}

});
