<!-- *** SLIDE *** -->

// VALORE INIZIALE
counter = 0;

// INIZIO SLIDE
//setInterval('rotate()',3000);

// ROTATE
function rotate() {
	counter ++;
	icon(counter);
	if(counter > 4) { counter = -1; }
	}

// ICON
function slide(step) {
	// CURRENT
	for(i=1; i<4; i++) {
		document.getElementById("current_" + i).style.background="url(images/home/step.jpg)";
		}
	document.getElementById("current_" + step).style.background="url(images/home/current.jpg)";
	// FADE
	for(i=1; i<4; i++) {		
		document.getElementById("pic_" + i).style.display = "none";
		}
	$("#pic_" + step).fadeIn(500);
	// SLIDE
	document.getElementById("step_text").style.marginTop = 0;
	// NASCONDE IL TESTO DI TUTTI GLI STEP
	for(i=1; i<4; i++) {
		document.getElementById("step_" + i).style.display = "none";
		}
	// MOSTRA IL TESTO DELLO STEP CORRENTE
	document.getElementById("step_" + step).style.display = "block";
	//
	$("#step_text").animate(
		{ marginTop: -100 },    
		{ duration: "slow" 
		});
	// STEP CORRENTE
	counter = step;
	}

<!-- *** SHADOWBOX *** -->

Shadowbox.init({
	overlayOpacity: 0.7,
	continuous: true,
    modal: true
});
