var JSPage = Class.create(); 

JSPage.prototype = { 
	initialize : function() {
		Object.extend(window, this);
		
		Event.observe("condicionesInstalacion", "click", window.mostrarCondiciones)
	},
	
	mostrarCondiciones : function(){
		$('condicionesCont').show();
	}
}

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