
/*****************************************
 * Simple RollOver script by Virtual_Max 
 * http://come.to/vmax 
 * Free to use untill this notice  present 
 * unchanged in all copies and derivatives
 *****************************************/
function VMaxOver(link,id,overIm) {
  if(document.images) {
    im            = document.images[id];
    im.outIm      = new Image();
    im.overIm     = new Image();
    im.outIm.src  = document.images[id].src;
    im.overIm.src = overIm;
    im.src        =im.overIm.src;
    link.onmouseout  = new Function("var im=document."+id+"; im.src=im.outIm.src;");
    link.onmouseover = new Function("var im=document."+id+"; im.src=im.overIm.src;");
  }
}
