

function obj_hover_over(imageName) {
  bigimg = document.getElementById('index_big_image');
  bigimg.src = imageName + '.png';
}

function obj_set_empty() {
  bigimg = document.getElementById('index_big_image');
  bigimg.src = 'blank.png';
}

/*
function add_events() {
  mds = Array();
  for(var i = 0; i < document.images.length; i++) {
    img = document.images[i];
    if(img.id.match(/^menu-img-(.*)$/)) {
      img.onmouseover = new Function("obj_hover_over('" + RegExp.$1 + "');");
      img.onmouseout = new Function("obj_set_empty();");
    }
  }
}
*/

// $Id: image_loading.js 388 2006-01-06 19:17:48Z wwwwolf $

