// JavaScript Document
<!--
img_name=new Array();
img_name[1] = "img/access/photo02.jpg";
img_name[2] = "img/access/photo03.jpg";
img_name[3] = "img/access/photo04.jpg";
img_name[4] = "img/access/photo05.jpg";
img_name[5] = "img/access/photo_02.jpg";
img_name[6] = "img/access/photo_03.jpg";
img_name[7] = "img/access/photo_04.jpg";
img_name[8] = "img/access/photo_05.jpg";
img_name2   = "img/access/photo1.jpg";

img1 = new Array();
img2 = new Image(); img2.src = img_name2;
for(i=0; i<img_name.length; i++)  {
  img1[i] = new Image(); img1[i].src = img_name[i];
}

function mouse_over(which) {
  document.images["swapImg"].src=img1[which].src;
}
function mouse_out(which) {
  document.images["swapImg"].src=img2.src;
}
//-->
