//************************
// Preloader per Imagini


var ImageListOff=new Array();
var ImageListOn= new Array();

onload=ImagesPreload;

function ImagesPreload(){
	if(document.images){
		
		ImageListOff[1]= new Image; ImageListOff[1].src='http://www.scoiattolo.info/images/welcome_off.gif';
		ImageListOn[1] = new Image; ImageListOn[1].src='http://www.scoiattolo.info/images/welcome_on.gif';
		ImageListOff[2]= new Image; ImageListOff[2].src='http://www.scoiattolo.info/images/rooms_off.gif';
		ImageListOn[2] = new Image; ImageListOn[2].src='http://www.scoiattolo.info/images/rooms_on.gif';		
		ImageListOff[3]= new Image; ImageListOff[3].src='http://www.scoiattolo.info/images/restaurant_off.gif';
		ImageListOn[3] = new Image; ImageListOn[3].src='http://www.scoiattolo.info/images/restaurant_on.gif';
		ImageListOff[4]= new Image; ImageListOff[4].src='http://www.scoiattolo.info/images/relax_off.gif';
		ImageListOn[4] = new Image; ImageListOn[4].src='http://www.scoiattolo.info/images/relax_on.gif';
		ImageListOff[5]= new Image; ImageListOff[5].src='http://www.scoiattolo.info/images/location_off.gif';
		ImageListOn[5] = new Image; ImageListOn[5].src='http://www.scoiattolo.info/images/location_on.gif';
		ImageListOff[6]= new Image; ImageListOff[6].src='http://www.scoiattolo.info/images/pricelist_off.gif';
		ImageListOn[6] = new Image; ImageListOn[6].src='http://www.scoiattolo.info/images/pricelist_on.gif';
		ImageListOff[7]= new Image; ImageListOff[7].src='http://www.scoiattolo.info/images/offers_off.gif';
		ImageListOn[7] = new Image; ImageListOn[7].src='http://www.scoiattolo.info/images/offers_on.gif';
		ImageListOff[8]= new Image; ImageListOff[8].src='http://www.scoiattolo.info/images/availability_off.gif';
		ImageListOn[8] = new Image; ImageListOn[8].src='http://www.scoiattolo.info/images/availability_on.gif';
		ImageListOff[9]= new Image; ImageListOff[9].src='http://www.scoiattolo.info/images/requests_off.gif';
		ImageListOn[9] = new Image; ImageListOn[9].src='http://www.scoiattolo.info/images/requests_on.gif';
	}
}

// Cambio Mouseover

function ImageOn(NumeroImage,NomeImage){
	if (ImageListOn[NumeroImage])
		document[NomeImage].src=ImageListOn[NumeroImage].src;
}

function ImageOff(NumeroImage,NomeImage){
	if (ImageListOff[NumeroImage])
		document[NomeImage].src=ImageListOff[NumeroImage].src;
}
	