(function($) { // Para hacer compatible luego de Prototype
	$(document).ready(function(){

		$("#res-form").validate();
		
		$(".accordion h3.dspAcc:first").addClass("active");
		$(".accordion div.vtnAcc:not(:first)").hide();

		$(".accordion h3").click(function(){
			$(this).next("div.vtnAcc").slideToggle("slow")
			.siblings("div.vtnAcc:visible").slideUp("slow");
			$(this).toggleClass("active");
			$(this).siblings("h3.dspAcc").removeClass("active");

		   
		});
		
	
		$('#excursiones_src').change(function(){
				var url=$('#excursiones_src').val();
				if(url!=(-1))
					location.href=url;
				else	
					alert('Debe seleccionar una Excursi&oacute;n');
		});
	
	 
		$('#slideshow').cycle({
	        fx:     'scrollLeft',
	        speed:  '200',
			delay:  1000 
	  
	    });
		$('#slider-top').cycle({
	        fx:     'fade',
	        speed:  '3000'
	  
	    });
	       
	    $('.gallery a').lightBox(); 
	  $('.gallery a,.hotel-ofertas a.image').lightBox();  
	   
	  $(function() {

    $('#s4').before('<div id="nav-s4" class="nav-s4">').cycle({
        fx:     'scrollLeft',
        speed:  'fast',
        timeout: 0,
        pager:  '#nav-s4'
    });
});
			
			
	});
})(jQuery);


