
var PoeticScape = new Class({

	// ----------------------------------------------------------------------------------------------------
	// Init

	initialize : function() {
		new Fx.SmoothScroll({
			links: "a",
			duration: 500,
			wheelStops: true
		});
	}
	
});







window.addEvent("domready", function(){
	new PoeticScape();
});



