function scroll (target) {
	var targetOffset = $('#' + target).offset().top;
	$('html,body').animate({scrollTop: targetOffset}, 1000);
}
