// JavaScript Document
// JAVASCRIPT DOESN'T RECOGNIZE HYPHENS IN VAR NAMES.

function swap(name){
       if (document.images){
               document.images[name].src= eval(name+"_over.src");
       }
}

function restore(name){
       if (document.images){
               document.images[name].src= eval(name+".src");
       }
}

