$(document).ready(function(){
	$(".xScrollStick").each(function(i){
		$(this).attr('rel',$(this).offset().top);
	});
    $(window).scroll(function (){ 
		$(".xScrollStick").each(function(i){
			var offsetTop = parseInt($(this).attr('rel')) + $(window).scrollTop() +"px";
			$(this).animate({top : offsetTop },{ duration:600 , queue:false });
		});
    });
}); /*  |xGv00|9f814cf93f2075036191ef77b2e7e8c3 */
