// JavaScript Document
//This script changes the graphic on mouse over and a graphic in
//another part of the screen

{
alt0 = new Image();
alt0.src = "photos/gris.gif";

alt1 = new Image();
alt1.src = "photos/proyecta1.gif";

alt2 = new Image();
alt2.src = "photos/ana.gif";

alt3 = new Image();
alt3.src = "photos/carpa2.gif";

alt4 = new Image();
alt4.src = "photos/dragon.gif";

alt5 = new Image();
alt5.src = "photos/carpa1.gif";

alt6 = new Image();
alt6.src = "photos/grafiti1.gif";

alt7 = new Image();
alt7.src = "photos/grafiti2.gif";

alt8 = new Image();
alt8.src = "photos/grafiti3.gif";

alt9 = new Image();
alt9.src = "photos/grafiti4.gif";

alt10 = new Image();
alt10.src = "photos/laila.gif";

alt11 = new Image();
alt11.src = "photos/Carpa12.gif";

alt12 = new Image();
alt12.src = "photos/mexico_solarriba.gif";

alt13 = new Image();
alt13.src = "photos/musica1.gif";

alt14 = new Image();
alt14.src = "photos/Carpa3.gif";

alt15 = new Image();
alt15.src = "photos/carpa4.gif";

alt16 = new Image();
alt16.src = "photos/musica2.gif";

}
function imageChange(imageID,imageName,imageID2,imageName2) {


{
document.images[imageID].src = eval(imageName + ".src");
document.images[imageID2].src = eval(imageName2 + ".src");
}

}


