
var html=""

$(function(){
$(window).scroll(function(){goTop();});
});

function goTop(){

$(".move").stop().animate({"top":$(window).height()+$(window).scrollTop()-380},1000);

}
