var $document = $(document)
$document.scroll(function () {
if ($document.scrollTop() >= 0) {
$('html, body').animate({scrollTop : 700},800);
return false;
} else {
$('html, body').animate.stop({scrollTop : 0},800);
return false;
}
});
nodes.wrapp.on({
mousewheel: function(event){
event.preventDefault();
}
});