function scrollWin(element){
	$('html, body').animate({
		scrollTop: $(element).offset().top
	}, 1000);
}

$(document).ready(function() {
	$.each($(".scrollPage").children(), function() {
		$(this).click(function() {
			scrollWin($(this).attr("href"))
		})
	})
});
