// JavaScript Document
<!-- // LOGO //-->
var logo = new Image;
logo.src="images/logo.jpg";
<!-- // MENU //-->
menu = new Array
("images/buttons/home_up.gif","images/buttons/home_down.gif","images/buttons/artists_up.gif","images/buttons/artists_down.gif","images/buttons/exhibitions_up.gif","images/buttons/exhibitions_down.gif","images/buttons/news_up.gif","images/buttons/news_down.gif","images/buttons/gallery_up.gif","images/buttons/gallery_down.gif","images/buttons/espanol.gif","images/buttons/espanol_down.gif","images/buttons/inicio_down.gif","images/buttons/inicio.gif","images/buttons/artistas_up.gif","images/buttons/artistas_down.gif","images/buttons/expos_up.gif","images/buttons/expos_down.gif","images/buttons/noticias_up.gif","images/buttons/noticias_down.gif","images/buttons/galeria_up.gif","images/buttons/galeria_down.gif","images/buttons/english.gif","images/buttons/english_down.gif");
for (cont=0;cont<menu.length;cont++) {
	eval ("imgmenu" + cont + " = new Image();");
	eval ("imgmenu" + cont + ".src = " + "\"" + menu[cont] + "\";");
}
<!-- carga de imagenes // MENU ARTISTAS //-->
var artistu = new Array;
var artistd = new Array;
for (i=1;i<16;i++){
	artistu[i] = new Image;
    artistu[i].src = "images/buttons/mnArtistas/item"+i+".gif";
	artistd[i] = new Image;
    artistd[i].src = "images/buttons/mnArtistas/item"+i+"_over.gif";
}

<!-- carga de imagenes // MENU EXPOSICIONES //-->
var expAct = new Image;
var expAct_es = new Image;
expAct.src="images/buttons/mnExposiciones/current.gif";
expAct_es.src="images/buttons/mnExposiciones/en_curso.gif";
var expActD = new Image;
var expActD_es = new Image;
expActD.src="images/buttons/mnExposiciones/current_over.gif";
expActD_es.src="images/buttons/mnExposiciones/en_curso_over.gif";
var expSep = new Image;
expSep.src="images/buttons/mnExposiciones/separa.gif";
var expFut = new Image;
var expFut_es = new Image;
expFut.src="images/buttons/mnExposiciones/future.gif";
expFut_es.src="images/buttons/mnExposiciones/futuro.gif";
var expFutD = new Image;
var expFutD_es = new Image;
expFutD.src="images/buttons/mnExposiciones/future_over.gif";
expFutD_es.src="images/buttons/mnExposiciones/futuro_over.gif";
var expPas = new Image;
var expPas_es = new Image;
expPas.src="images/buttons/mnExposiciones/past.gif";
expPas_es.src="images/buttons/mnExposiciones/pasado.gif";

var expPasu = new Array;
var expPasd = new Array;
for (i=1;i<28;i++){
	expPasu[i] = new Image;
    expPasu[i].src = "images/buttons/mnExposiciones/past"+i+".gif";
	expPasd[i] = new Image;
    expPasd[i].src = "images/buttons/mnExposiciones/past"+i+"_over.gif";
}
