jQuery(function( $ ){
	
	// Scroll initially if there's a hash (#something) in the url 
	$.localScroll.hash({
		duration:1500
	});
	
	// Make all local links inside of #content scroll
	$('#content').localScroll({
		duration:1000,
		hash:true,
	});
	
});
