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