About = Class.create();
About.prototype = {
	
	
	slider: null,
	loaded: false,
	
	initialize: function() {
	},
	
	close: function() {
		if (this.slider) this.slider.reset();
	},
	
	awake: function() {
		if (!this.slider) {
			this.slider = new ScrollArea('vertical','about_content','about_track','about_handle');
		}
		this.slider.update();
	},
	
	load_content: function() {
		new Ajax.Updater('about', 'parts/about.php',{
			asynchronous: false,
			evalScripts: true
		});
		this.loaded = true;
	}
	
	
}


about       = new About();
