var information, Information = Class.create();
Information.prototype = {
	initialize: function(){
		this.pages = document.getElementsByClassName('pages');
	
		this.play();
	},
	
	play: function(){
		for(i=0; i<this.pages.length; i++){
			window.setTimeout("new Effect.Morph('" + this.pages[i].id + "', {style: 'width: 100%;', duration: 0.6});", (i*500));
		}
	}
}