var Story = Class.create();
Story.prototype = {
	initialize: function(){
		standard = new Standard();
	}
	
}




document.observe('dom:loaded', function() {
	standard = new Standard();
	story = new Story();
	popup = new Popup();
	common = new Common();
});
