var JSPage = Class.create(); 

JSPage.prototype = { 
	initialize : function() {
		Object.extend(window, this);
		
	}
}

Event.observe(window,"load",function(){
	jsPage = new JSPage();
});