window.addEvent('domready', function(){
		$('checkout').addEvent('change',function(e){tildarPaso(1);});
		$('habitaciones').addEvent('change',function(e){tildarPaso(2);});
		$('checkin').addEvent('change',function(e){tildarPaso(4);});
		$$('select.selecantidad').addEvent('change', calcularSubtotalHabitaciones);
		/* busqueda  ya hecha */
		var a = $$('.habitaciones input');
		/* este hidden solo aparece despues de la busqueda de cualquier tipo */
		if(typeof(a) != 'undefined'&& a.length > 0){tildarPaso(2);tildarPaso(4);}
			if($('form_paso1')){
				$('form_paso1').addEvent('submit',function(e){		
				var res = validarbusqueda(e,palabrasForm)
				if(res === true) {
					return	true;
				}else{
					$('msj_alerta').set('html',res).toogle();
					return false;
				}});	
	}
});  

