var navphoto = new Array();
var navphotopath = "images/navphoto/";

/* 9.. 14 messe temporaneamente */
function Preload_Images() { 
	if	(document.images) { 
		navphoto[0]=new Image(); navphoto[0].src=navphotopath+"architettura.jpg";		// 
		navphoto[1]=new Image(); navphoto[1].src=navphotopath+"artimarziali.jpg";		// 
		navphoto[2]=new Image(); navphoto[2].src=navphotopath+"attivita.jpg";		// 
		navphoto[3]=new Image(); navphoto[3].src=navphotopath+"bonsai.jpg";		// 
		navphoto[4]=new Image(); navphoto[4].src=navphotopath+"calligrafia.jpg";		// 
		navphoto[5]=new Image(); navphoto[5].src=navphotopath+"chi_siamo.jpg";		// 
		navphoto[6]=new Image(); navphoto[6].src=navphotopath+"cook_fusion.jpg";		// 
		navphoto[7]=new Image(); navphoto[7].src=navphotopath+"corsi.jpg";		// 
		navphoto[8]=new Image(); navphoto[8].src=navphotopath+"daoyin.jpg";		// 
		navphoto[9]=new Image(); navphoto[9].src=navphotopath+"dove_siamo.jpg";		// 
		navphoto[10]=new Image(); navphoto[10].src=navphotopath+"fengshui.jpg";		// 
		navphoto[11]=new Image(); navphoto[11].src=navphotopath+"filosofia.jpg";		// 
		navphoto[12]=new Image(); navphoto[12].src=navphotopath+"fotogallery.jpg";		// 
		navphoto[13]=new Image(); navphoto[13].src=navphotopath+"giardini.jpg";		// 
		navphoto[14]=new Image(); navphoto[14].src=navphotopath+"letterati.jpg";		// 
		navphoto[15]=new Image(); navphoto[15].src=navphotopath+"letti_per_voi.jpg";		// 
		navphoto[16]=new Image(); navphoto[16].src=navphotopath+"linguacinese.jpg";		// 
		navphoto[17]=new Image(); navphoto[17].src=navphotopath+"members.jpg";		// 
		navphoto[18]=new Image(); navphoto[18].src=navphotopath+"musica.jpg";		// 
		navphoto[19]=new Image(); navphoto[19].src=navphotopath+"poesia.jpg";		// 
		navphoto[20]=new Image(); navphoto[20].src=navphotopath+"religione.jpg";		// 
		navphoto[21]=new Image(); navphoto[21].src=navphotopath+"schacchi.jpg";		// 
		navphoto[22]=new Image(); navphoto[22].src=navphotopath+"taiji.jpg";		// 
		navphoto[23]=new Image(); navphoto[23].src=navphotopath+"the.jpg";		// 
		navphoto[24]=new Image(); navphoto[24].src=navphotopath+"viaggi.jpg";		// 
		navphoto[25]=new Image(); navphoto[25].src=navphotopath+"video_gallery.jpg";		// 
		navphoto[26]=new Image(); navphoto[26].src=navphotopath+"visti_per_voi.jpg";		// 
		navphoto[27]=new Image(); navphoto[27].src=navphotopath+"homepage.jpg";		// 
		navphoto[28]=new Image(); navphoto[28].src=navphotopath+"articoli.jpg";		// 
		navphoto[29]=new Image(); navphoto[29].src=navphotopath+"pittura.jpg";		// 
		navphoto[30]=new Image(); navphoto[30].src=navphotopath+"spada.jpg";		// 
	} 
} // Preload_Images


function ChangePhoto(idx) {
	document.images.navphotoimage.src=navphoto[idx].src;
	which = idx;
} // ChangePhoto



function myReloadWindow() {
	Preload_Images();
	ChangePhoto(27);
} // myReloadWindow

