// Scroll
function goToByScroll(id){
	$('html,body').animate({scrollTop: $("#"+id).offset().top},1000);
}

