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

