var info=new Array();
info[0]="Fader museum of fine arts. On exhibit is an important colllection of provincial and national artists. Fernando Fader was an important Argentinian plastic artist. Museum first opened to the public back in 1951.Open from Monday to Friday 9am-6pm. Saturdays and Sundays from 2pm- 7pm. Ph: 496 0224 ";
info[1]="Independencia Theatre, Plaza Independencia. Phone 423 2318. Chile and Espejo streets. Right next to the Hyatt hotel";
info[2]="Cielito Mexican Restaurant, great tacos and a moderate price. H. Irigoyen 197, Downtown. Phone : 424 4383";


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/Mendoza/Fader/400/Fader.jpg','images/Mendoza/Teatro Independencia/400/TeatroIndep.jpg');

