		$(document).ready(function() {
			$("ul.tabs").tabs("div.panes > div", { 
			// enable "cross-fading" effect
			effect: 'default',
			fadeOutSpeed: "fast",
			// start from the beginning after the last tab
			rotate: true
			// use the slideshow plugin. It accepts its own configuration
			}).slideshow({
				interval: 3000	
			});		
		});
		
        $(window).load(function() {

			setTimeout(function(){
				$("ul.tabs").tabs().play();
			}, 3000);
			
			$("#acquaesapone_sceltipervoi > .immagine").html($("#acquaesapone_sceltipervoi > .slot_div:first > .etichetta_immagine").html());
			$("#acquaesapone_sceltipervoi > .slot_div:first").show();

			$("#acquaesapone_promozioni > .immagine").html($("#acquaesapone_promozioni > .slot_div:first > .etichetta_immagine").html());
			$("#acquaesapone_promozioni > .slot_div:first").show();
			
			$(".slide > ul > li > a").click(function(e) {
				
				e.preventDefault();
				
				var prid = $(this).attr("href") - 1;
				var box = $(this).parent().parent().parent().parent();

				$(box).find(".slide > ul > li > a").removeClass("on");
				$(this).addClass("on");
				
				var slot = $(box).find(".slot_div").eq(prid);
				
				$(box).find(".slot_div").hide();
				$(box).find(".slot_div").eq(prid).show();				
				$(box).find(".immagine").html($(slot).find(".etichetta_immagine").html());
				
			});
			
        });
