$(document).ready(function(){


$('#scroll').click(function(event){
	event.preventDefault();
    var jump = $(this).attr('href');
    var new_position = $('#'+jump).offset();
    $('html, body').animate({scrollTop:new_position.top}, 1000);
    return false;
});

$('#up').click(function(event){
	event.preventDefault();
    $('html, body').animate({scrollTop:0}, 1000);
    return false;
});

});

