/*IGUALAR ALTURA
-------------------------------------------------------------	*/
/*$(document).ready(function() {

	//submenu
	altura = $("#contenedor").height()-$("#menu").height()-$("#logo").height();
	$("#submenu").height(altura);
	
	//contenido
	$("#contenido").height($("#contenedor").height());

});*/
$(document).ready(function() {
	$(window).bind("load",function() {
		//submenu
		altura = $("#contenedor").height()-$("#menu").height()-$("#logo").height();
		$("#submenu").height(altura);
		
		//contenido
		$("#contenido").height($("#contenedor").height());
	});
});

/*POPUP
-------------------------------------------------------------	*/
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

/*FANCYBOX
-------------------------------------------------------------	*/
$(document).ready(function() { 

	$("a.reserva").fancybox({
		'zoomSpeedIn': 400,
		'zoomSpeedOut': 400,
		'zoomOpacity': true,
		'frameWidth': 600,
		'frameHeight': 500,
		'overlayOpacity': 0.5
	});
	$("a.condiciones-pago").fancybox({
		'zoomSpeedIn': 400,
		'zoomSpeedOut': 400,
		'zoomOpacity': true,
		'frameWidth': 600,
		'frameHeight': 450,
		'overlayOpacity': 0.5
	});
	$("a.recomendar-amigo,a.recomendar-amigo-peq").fancybox({
		'zoomSpeedIn': 400,
		'zoomSpeedOut': 400,
		'zoomOpacity': true,
		'frameWidth': 500,
		'frameHeight': 350,
		'overlayOpacity': 0.5
	});
	$("a.tiempo").fancybox({
		'zoomSpeedIn': 400,
		'zoomSpeedOut': 400,
		'zoomOpacity': true,
		'frameWidth': 350,
		'frameHeight': 360,
		'overlayOpacity': 0.5
	});
	$("a.webcam").fancybox({
		'zoomSpeedIn': 400,
		'zoomSpeedOut': 400,
		'zoomOpacity': true,
		'frameWidth': 470,
		'frameHeight': 500,
		'overlayOpacity': 0.5
	});
	$("a.galeria-img").fancybox({
		'zoomSpeedIn': 400,
		'zoomSpeedOut': 400,
		'zoomOpacity': true,
		'overlayOpacity': 0.5
	});

}); 

/*VALIDAR FORM
-------------------------------------------------------------	*/
$(document).ready(function(){
	$("#form-contacto").validate();
	$("#FORMULARIO_INFORMACION").validate();
	$("#form-pago").validate();
	$("#form-recomendar").validate();
});

/*TABS
-------------------------------------------------------------	*/
$(document).ready(function(){
	$("#tabs").tabs();
});

/*SLIDESHOW (http://slideshow.hohli.com/)
-------------------------------------------------------------	*/
$(document).ready(function(){
	$('.previsualizacion').slideshow({
		playframe:false,
		controls :{         // show/hide controls elements
			'hide':true,    // show controls bar on mouse hover
			'first':false,   // goto first frame
			'prev':false,    // goto previouse frame (if it first go to last)
			'play':false,    // play slideshow
			'next':false,    // goto next frame (if it last go to first)
			'last':false,    // goto last frame
			'help':false,    // show help message
			'counter':true  // show slide counter
		}
	
	}).playSlide();
});

