$(function() {
	$('a.scroller').bind('click',function(event){
		var $anchor = $(this);
		$('html, body').stop().animate({
			scrollTop: $($anchor.attr('href')).offset().top
		}, 1500,'easeOutElastic');
		event.preventDefault();
	});
});

$(function() {
	$('a.scroller-smooth').bind('click',function(event){
		var $anchor = $(this);
		$('html, body').stop().animate({
			scrollTop: $($anchor.attr('href')).offset().top
		}, 1500,'easeInOutCirc');
		event.preventDefault();
	});
});

