
// Smooth Scrolling with jQuery

$(document).ready(function(){
	$(".scroll").click(function(event){ 
		event.preventDefault(); 
		var offset = $($(this).attr('href')).offset().top; 
		$('html, body').animate({scrollTop:offset}, 1000); 
	});
});
