var info=new Array();
info[0]="Merry Xmas !!";
info[1]="Snowed in Fauna";
info[2]="Villa";
info[3]="Homero at the gate.. Desperado!";
info[4]="Villa";
info[5]="Villa with snow";
info[6]="Palm Tree";
info[7]="Any one for a dip?";
info[8]="Table by the pool";
info[9]="Main Entrance";
info[10]="Olive trees";
info[11]="Villa from the outside";
info[12]="Snowed Park";
info[13]="Round table";
info[14]="Homero";
info[15]="Villa";
info[16]="Barbeque!!";
info[17]="Park";
var preloads=[];
function preload(){
for(var i = 0; i < arguments.length; i ++) {
preloads[preloads.length] = new Image();
preloads[preloads.length - 1].src = arguments[i];

}
}
function showImage(w,h,i) {
document.getElementById("init_display").style.display="none";
var image=preloads[i].src;
var db=document.body;
var obj=document.getElementById("display").style;
obj.width=w+"px";
obj.height=h+"px"
obj.backgroundImage="url("+image+")";
obj.display="block";
document.getElementById('info').innerHTML=info[i];
}
preload('images/QuintaSnow/400/xmasTree.jpg','images/QuintaSnow/400/Bushes.jpg','images/QuintaSnow/400/house.jpg','images/QuintaSnow/400/gateHomero.jpg','images/QuintaSnow/400/house1.jpg','images/QuintaSnow/400/HouseGate.jpg','images/QuintaSnow/400/Palm.jpg','images/QuintaSnow/400/PoolJacuzzi.jpg','images/QuintaSnow/400/PoolTble.jpg','images/QuintaSnow/400/HouseGate1.jpg','images/QuintaSnow/400/OliveTrees.jpg','images/QuintaSnow/400/HouseExt.jpg','images/QuintaSnow/400/park.jpg','images/QuintaSnow/400/RoundTable.jpg','images/QuintaSnow/400/Homeroo.jpg','images/QuintaSnow/400/HouseGate.jpg','images/QuintaSnow/400/BbqPool.jpg','images/QuintaSnow/400/trees.jpg');
