//************************
// 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.belaval.com/images/apartments_off.gif';
		ImageListOn[1] = new Image; ImageListOn[1].src='http://www.belaval.com/images/apartments_on.gif';
		

ImageListOff[2]= new Image; 
ImageListOff[2].src='http://www.belaval.com/images/relax_off.gif';
		ImageListOn[2] = new Image; 
ImageListOn[2].src='http://www.belaval.com/images/relax_on.gif';	
	
ImageListOff[3]= new Image; ImageListOff[3].src='http://www.belaval.com/images/location_off.gif';
		ImageListOn[3] = new Image; ImageListOn[3].src='http://www.belaval.com/images/location_on.gif';

		
ImageListOff[4]= new Image; ImageListOff[4].src='http://www.belaval.com/images/pricelist_off.gif';
		ImageListOn[4] = new Image; ImageListOn[4].src='http://www.belaval.com/images/pricelist_on.gif';

		
ImageListOff[5]= new Image; ImageListOff[5].src='http://www.belaval.com/images/specialoffers_off.gif';
		ImageListOn[5] = new Image; ImageListOn[5].src='http://www.belaval.com/images/specialoffers_on.gif';

		
ImageListOff[6]= new Image; ImageListOff[6].src='http://www.belaval.com/images/availability_off.gif';
		ImageListOn[6] = new Image; ImageListOn[6].src='http://www.belaval.com/images/availability_on.gif';

		
ImageListOff[7]= new Image; ImageListOff[7].src='http://www.belaval.com/images/requests_off.gif';
		ImageListOn[7] = new Image; ImageListOn[7].src='http://www.belaval.com/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;
}
	