/* carusel para ofertas de destinos*/
var intervalJA;

function carrusel(){

clearInterval(intervalJA);

	/* slider ofertas */
	
	$("<a name='prev' href='#prev' class='btn_previo'><< prev</a> <a name='prev' href='#prev' class='btn_siguiente'>sig >></a> ").insertAfter("#carrusel");
	
	$("#carrusel li:last").clone().insertBefore("#carrusel li:first");
	$("#carrusel li:first").next().clone().insertAfter("#carrusel li:last");
	$("#carrusel").css({
		"width":"100000px",
		"left":"-269px",
		"position":"relative"});
	
	$(".btn_siguiente").click(function(){
			$("#carrusel li:first").next().next().clone().appendTo("#carrusel");
			$("#carrusel").animate({"left":"-517px"},500,function(){
				$("#carrusel li:first").remove();
				$("#carrusel").css({"left":"-269px"});	
				
				//----------- jcifpa fancy---------------------------------------
				$(".mas_detalle").fancybox({
												'titleShow'		    : false,
												'width'				: 760,
												'height'			: 434,
												'autoScale'			: false,
												'type'				: 'iframe',
												'overlayOpacity'	: 0.8,
												'overlayColor'		: '#000'
											});
				//----------------------------------------------------------
			});
		return false;
	});
	
	$(".btn_previo").click(function(){
			$("#carrusel").animate({"left":"0px"},500,function(){
				$("#carrusel li:last").prev().prev().clone().prependTo("#carrusel");
				$("#carrusel li:last").remove();
				$("#carrusel").css({"left":"-269px"});	
				
			//----------- jcifpa fancy---------------------------------------
				$(".mas_detalle").fancybox({
												'titleShow'		    : false,
												'width'				: 760,
												'height'			: 434,
												'autoScale'			: false,
												'type'				: 'iframe',
												'overlayOpacity'	: 0.8,
												'overlayColor'		: '#000'
											});
			//----------------------------------------------------------
			});
		return false;
	});
		
intervalJA = setInterval(function(){
					$("#carrusel li:first").next().next().clone().appendTo("#carrusel");
			$("#carrusel").animate({"left":"-517px"},500,function(){
				$("#carrusel li:first").remove();
				$("#carrusel").css({"left":"-269px"});
			//----------- jcifpa fancy---------------------------------------
				$(".mas_detalle").fancybox({
												'titleShow'		    : false,
												'width'				: 760,
												'height'			: 434,
												'autoScale'			: false,
												'type'				: 'iframe',
												'overlayOpacity'	: 0.8,
												'overlayColor'		: '#000'
											});
			//----------------------------------------------------------
			});
	},5000);
};

