var info=new Array();
info[0]="Charles and Friends";
info[1]="TheAsado!";
info[2]="Charles and Friends";
info[3]="Charles and Friends";
info[4]="Fire Pit";
info[5]="Pool at night";
info[6]="Charley and Homero";
info[7]="Me and the boys";

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/Feb2006/400/TheBoysGals.jpg','images/Feb2006/400/Asado.jpg','images/Feb2006/400/AtTheRoundTable.jpg','images/Feb2006/400/Boys.jpg','images/Feb2006/400/FirePit.jpg','images/Feb2006/400/Grouppool.jpg','images/Feb2006/400/HomeroCharles.jpg','images/Feb2006/400/MeAndBoys.jpg');

