// JavaScript Document
$(document).ready(function()
{	
	
		$('#fadeshow1').cycle({
	fx: 'fade',
	speed: 800,
	timeout: 6000
	});	
	
	$("#feria").css({"cursor":"pointer"});
	$("#feria").click(function(){
							 
							 document.location="paquetes.html";
							 });
	$("#cerrarCont").click(function(){
		
		$(".contMundial").fadeOut("Fast");
		});
});
function cerrar()
{
	$("#comunicado").hide("Fast");
}
function buscahotel(txt)
{
	if(txt!="")
	{
		$(".bhoteles").fadeIn("Fast");
		$.ajax({
			type: "POST",
			url: 'control.php',
			data:"&opc=28&txt="+txt,
			success: function(datos){
					$(".bhoteles").html(datos);
			}
			
		});
	}
	else
	{
		$(".bhoteles").fadeOut("Fast");
	}
}
