function marcarh(zein)
{
	//Script para maracar el numero de habitaciones seleccionados
	for(h=1;h<6;h++)
	{
		document.getElementById('habs'+h).className='normaltd2';
	}
	for(h=1;h<6;h++)
	{
		if(h>=zein)
		{
		document.getElementById('habs'+h).className='normaltd3';
		}
		if(h==zein)
		{	
		document.getElementById('Habitaciones').value=zein;
		}		

	}
}

