	
	function ponCeros(que) {
		x = new String(que);
		if(x.length == 1) {
			x = '0' + x;
			return x;
		} else {
			return que;
		}
	}
	
	$(document).ready(function() {
		$("#slider").easySlider();
		$("a.single_image").fancybox();
		$("#idioma-activo a").click(function () {
			$('#idiomes ul').slideToggle();
		});
		if ($('#form-booking').size() != "0") {	
			try{suma1();}catch(err){}
		}
		
		
	});

	function destaca(que) {
		try{anterior.style.borderColor="#7f9db9";}catch(e){}
		anterior=que;
		try{anterior.style.borderColor="#4f4f4f";}catch(e){}
	}

	foto_siguiente = "";
	foto_anterior = "";

	function ponLaFoto(id) {
		$('#titulo').html($('#idIMG_' + id + '_titulo').html());
		$('#texto').html($('#idIMG_' + id + '_texto').html());
		document.getElementById('ampliacion').src = $('#idIMG_' + id + '_src').attr('src').replace('_1.', '_4.');
		foto_siguiente = $('#' + id).next().attr('id');
		foto_anterior = $('#' + id).prev().attr('id');
		if (foto_siguiente == undefined) {
			$('.carroussel-bt-siguiente').hide();
		} else {
			$('.carroussel-bt-siguiente').show();
		}
		if (foto_anterior == undefined) {
			$('.carroussel-bt-anterior').hide();
		} else {
			$('.carroussel-bt-anterior').show();
		}
	}

