<!--
if (document.images) {

homeon = new Image;
homeon.src = "images/btn_home2.jpg";
about_uson = new Image;
about_uson.src = "images/btn_about_us2.jpg";
products_serviceson = new Image;
products_serviceson.src = "images/btn_products_services2.jpg";
bulk_distributionon = new Image;
bulk_distributionon.src = "images/btn_bulk_distribution2.jpg";
contact_uson = new Image;
contact_uson.src = "images/btn_contact_us2.jpg";
trayon = new Image;
trayon.src = "images/trayb.jpg";



homeoff = new Image;
homeoff.src = "images/btn_home1.jpg";
about_usoff = new Image;
about_usoff.src = "images/btn_about_us1.jpg";
products_servicesoff = new Image;
products_servicesoff.src = "images/btn_products_services1.jpg";
bulk_distributionoff = new Image;
bulk_distributionoff.src = "images/btn_bulk_distribution1.jpg";
contact_usoff = new Image;
contact_usoff.src = "images/btn_contact_us1.jpg";
trayoff = new Image;
trayoff.src = "images/tray.jpg";



}

function img_act (imgName) {
  if (document.images) {
  imgOn = eval (imgName + "on.src");
  document [imgName].src = imgOn;
  }
}

function img_inact (imgName) {
  if (document.images) {
  imgOff = eval (imgName + "off.src");
  document [imgName].src = imgOff;
  }
}
//-->
