$(window).scroll(function(){
	var newtop = 0;
	if ($(window).scrollTop() < 370)
		newtop = 370 - $(window).scrollTop();
	$scrollingDiv
              .stop()
              .animate({"top": newtop + "px"}, "slow" );
});

