<!--
if (document.images) {

image1on = new Image();
image1on.src = "http://www.enneci2.com/img_comuni/chisiamo1.jpg";
image1off = new Image();
image1off.src = "http://www.enneci2.com/img_comuni/chisiamo.jpg";

image2on = new Image();
image2on.src = "http://www.enneci2.com/img_comuni/dove1.jpg";
image2off = new Image();
image2off.src = "http://www.enneci2.com/img_comuni/dove.jpg";


image3on = new Image();
image3on.src = "http://www.enneci2.com/img_comuni/cont1.jpg";
image3off = new Image();
image3off.src = "http://www.enneci2.com/img_comuni/cont.jpg";


}
function turnOn(imageName) {
if (document.images) {
 document[imageName].src = eval(imageName + "on.src");
     }
}
function turnOff(imageName) {


  if (document.images) {


    document[imageName].src = eval(imageName + "off.src");
 }
}
// -->