// Initialize all the jQuery and effects
function init() {
	$('.navLink').bind('click',function(event){
		var $anchor = $(this);
	
		$('html, body').stop().animate({
			scrollTop: $($anchor.attr('href')).offset().top 
		}, 4000,'easeInOutExpo');
					
		event.preventDefault();
	});
}
