<!--
if (document.images) rollover = "yes";
else rollover = "no";
if (rollover == "yes")
 {img1on = new Image();
  img2on = new Image();
  img3on = new Image();
  img4on = new Image();
  img5on = new Image();
  img6on = new Image();

  img1off = new Image();
  img2off = new Image();
  img3off = new Image();
  img4off = new Image();
  img5off = new Image();
  img6off = new Image();

  img1on.src = "images/profile_on.gif";
  img2on.src = "images/product_on.gif";
  img3on.src = "images/pack_on.gif";
  img4on.src = "images/client_on.gif";
  img5on.src = "images/contact_on.gif";
  img6on.src = "images/faqs_on.gif";

  img1off.src = "images/profile_off.gif";
  img2off.src = "images/product_off.gif";
  img3off.src = "images/pack_off.gif";
  img4off.src = "images/client_off.gif";
  img5off.src = "images/contact_off.gif";
  img6off.src = "images/faqs_off.gif";

 }
function imageSwitchOn(imageName)
 {
  if (rollover == "yes") {
  imageOn = eval(imageName + "on.src");
  document [imageName].src = imageOn;
}
}
function imageSwitchOff(imageName)
 {
 if (rollover == "yes") {
  imageOff = eval(imageName + "off.src");
  document [imageName].src = imageOff;
}
}
//-->