$(document).ready(function(){				

	// Restart the scroll position to ( 0, 0 )
	$().attr({scrollTop:0,scrollLeft:0});
	
	// Scroll if there's a hash in the url 
	$.localScroll.hash({
		duration:1000
	})

	// Save the last link
	var $last = $([]);
	
	// Scroll engines activate!
	$.localScroll({
		hash:true
	});
});