//This script changes the graphic on mouse over and a graphic in
//another part of the screen

alt0 = new Image();
alt0.src = "images/blank.gif";

alt1 = new Image();
alt1.src = "images/enogastronomia.gif";

alt2 = new Image();
alt2.src = "images/diving.gif";

alt3 = new Image();
alt3.src = "images/archeologia.gif";

alt4 = new Image();
alt4.src = "images/artigianato.gif";

alt5 = new Image();
alt5.src = "images/agriturismo.gif";

alt6 = new Image();
alt6.src = "images/spiagge.gif";

alt7 = new Image();
alt7.src = "images/vini.gif";

alt8 = new Image();
alt8.src = "images/porti.gif";

function imageChange(imageID,imageName) {

document.images[imageID].src = eval(imageName + ".src");

}
