

	function evidenzia_prodotto_timer(){
		var obj = $("div#banda_nera ul li.active").next();
		if(obj.length == 0)  obj = $("div#banda_nera ul li:first");
		evidenzia_prodotto(obj);
	}

	function evidenzia_prodotto(obj){
		if($(obj).hasClass('active')) return false;
		
		var old_li = $("div#banda_nera ul li.active");
		
		
		$(old_li).removeClass('active');
		$('img',old_li).animate({'opacity': .5},'fast');
		
		$(obj).addClass('active');
		$('img',obj).animate({'opacity':1},'slow')
		
		var target = $('a',obj).attr('rel');
		$("div#box_bottom div.slider:visible").hide();
		$("div"+target).show();		
	}
	
	$(document).ready(function(){
		var timer;
		$(".example7").colorbox({width:"95%", height:"95%", iframe:true, close:"Chiudi", open:true  });
        $('.colorbox').colorbox();
        $(".promozione1").colorbox({width:"650px", height:"650px", iframe:true});
		$("#text").localScroll('fast');
		
		$("#projector").cycle({cleartype:false});
		$("div#box_bottom div.slider:first").show();
		
		var first_li = "div#banda_nera ul li:first";
		$(first_li).addClass('active');
		$('img',first_li).css('opacity',1)
		
		$("div#banda_nera ul li").mouseenter(function(){
			clearInterval(timer);
			evidenzia_prodotto(this);			
		}).mouseleave(function(){
			timer = setInterval('evidenzia_prodotto_timer()',6000);
		});
		
		timer = setInterval('evidenzia_prodotto_timer()',6000);


		if($("ul.news_home li").length > 1){
			
			$(".carousel_news_home").jCarouselLite({
		        btnNext: ".next",
		        btnPrev: ".prev",
		        visible: 5,
				auto: 4000,
			    speed: 800
		    });
	    
	    }
		
		if($("ul.offerte_home li").length > 1){
			
			$(".carousel_offerte_home").jCarouselLite({
		        btnNext: ".next",
		        btnPrev: ".prev",
		        visible: 5,
				auto: 4000,
			    speed: 2000
		    });
	    
	    }
        
	/*
		$('.news_home a.dettaglio_news_home').colorbox();
	$('.offerte_home a').colorbox();
		$('.newsletter_home a').colorbox();
        $('.colorbox').colorbox();*/
	});

