imgpath = "img/topmenu/"

var ean = false;
var bName = navigator.appName;
var bVer = parseInt(navigator.appVersion);

if (bName == "Netscape" && bVer >= 3) ean = true;
else if( bVer >=4 ) ean=true;

if(ean)
{
  i0f = new Image;
  i0o = new Image;
  i0f.src = imgpath+"home-out.gif";
  i0o.src = imgpath+"home-up.gif";

  i1f = new Image;
  i1o = new Image;
  i1f.src = imgpath+"products-out.gif";
  i1o.src = imgpath+"products-up.gif";

  i2f = new Image;
  i2o = new Image;
  i2f.src = imgpath +"ma-out.gif";
  i2o.src = imgpath +"ma-up.gif";

  i3f = new Image;
  i3o = new Image;
  i3f.src = imgpath +"ao-out.gif";
  i3o.src = imgpath +"ao-up.gif";

  i4f = new Image;
  i4o = new Image;
  i4f.src = imgpath +"contact-out.gif";
  i4o.src = imgpath +"contact-up.gif";

//Customer Support
  imgpath = "img/right/"

  i255f = new Image;
  i255o = new Image;
  i255f.src = imgpath +"custsup-out.gif";
  i255o.src = imgpath +"custsup-up.gif";
}

function ov(imgID){
if(ean){
   iid = "i"+imgID;
   document [iid].src = eval("i" + imgID + "o.src");
}
}

function ou(imgID){
if(ean){
   iid = "i"+imgID;
   document [iid].src = eval("i" + imgID + "f.src");
}
}
