// JavaScript Document
$(document).ready(function() {

	$("a#reservarHotel").click(function(e) {
		e.preventDefault();					
		$.ajax({
			url: "http://www.eligehotelesrurales.com/elegir-fechas-reserva.php",
			async:true,
			data:"id="+this.rel+"&destino="+this.title,
			contentType: "application/x-www-form-urlencoded",
			dataType: "html",
			success: function(datos){mostrarPantalla(datos);},
			type: "GET"
		});
	}); 
	function mostrarPantalla(html){
		var miBoxy = new Boxy(html,{title: 'Elegir Fechas',closeText: 'Close',modal: false,fixed: false,draggable: true,unloadOnHide: true});
		miBoxy.show();
	}
});//Fin Ready Function

