$(document).ready(function(){ 	
	$('#top').click(function(){
		anchor = $(this).attr('href');
		$.scrollTo(anchor, 500);
		return false;
	});
	
	$('.jump').click(function(){
		anchor = $(this).attr('href');
		$.scrollTo(anchor, 500, {offset: {top:-140} });
		return false;
	});
});
