//************************
// 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/lageplan_off.gif';
		ImageListOn[3] = new Image; ImageListOn[3].src='http://www.belaval.com/images/lageplan_on.gif';
		ImageListOff[4]= new Image; ImageListOff[4].src='http://www.belaval.com/images/preisliste_off.gif';
		ImageListOn[4] = new Image; ImageListOn[4].src='http://www.belaval.com/images/preisliste_on.gif';
		ImageListOff[5]= new Image; ImageListOff[5].src='http://www.belaval.com/images/sonderangebote_off.gif';
		ImageListOn[5] = new Image; ImageListOn[5].src='http://www.belaval.com/images/sonderangebote_on.gif';
		ImageListOff[6]= new Image; ImageListOff[6].src='http://www.belaval.com/images/verfugbarkeit_off.gif';
		ImageListOn[6] = new Image; ImageListOn[6].src='http://www.belaval.com/images/verfugbarkeit_on.gif';
		ImageListOff[7]= new Image; ImageListOff[7].src='http://www.belaval.com/images/anfragen_off.gif';
		ImageListOn[7] = new Image; ImageListOn[7].src='http://www.belaval.com/images/anfragen_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;
}
	