//var num_jeco=17;//DEFINIZIONE NUMERO ELEMENTI GALLERIA SPONSOR BIANCO
var num_jeco=11;//DEFINIZIONE NUMERO ELEMENTI GALLERIA SPONSOR ROSSO

ii=0;
setTimeout('afterSeconds()',1000);




function showGalleria(){
document.getElementById("gallery").style.backgroundImage="url(../img/galleria/jeco"+ii+"foto"+myW+".JPG)"; 
setTimeout('afterSeconds()',4000)
}

function afterSeconds(){



if(ii == 0) { // SETTA LO SCREEN ALL'INIZIO

		if (!document.all){ // Explorer 

			document.getElementById("rightContainer").style.position = "fixed";

		}


	myH = screen.height; // Recupero l'altezza
	myW = screen.width; // Recupero la larghezza


	if(myW != 1024 && myW != 1152 && myW != 1280) {
		myW = 1024;
	}




	fotoW = ( (myW - 801) * 174) / 223;
	fotoW = parseInt(fotoW);


	fotoH = ( fotoW * 460) / 175;
	fotoH = parseInt(fotoH);
//  575
//	373

// 517
// 273

	document.getElementById("gallery").style.width = fotoW;
	document.getElementById("gallery").style.height = fotoH;

}


ii++;
if(ii == num_jeco+1) ii=1;
showGalleria();

}

showGalleria();

