<!--
if (document.images) {
//Leftbar images  
  home = new Image();
  home.src = "../images/home.gif";
  home2 = new Image();
  home2.src = "../images/homeon.gif";
  company = new Image();
  company.src = "../images/company.gif";
  company2 = new Image();
  company2.src = "../images/companyon.gif";
  products = new Image();
  products.src = "../images/products.gif";
  products2 = new Image();
  products2.src = "../images/productson.gif";
  services = new Image();
  services.src = "../images/services.gif";
  services2 = new Image();
  services2.src = "../images/serviceson.gif";
  publications = new Image();
  publications.src = "../images/publications.gif";
  publications2 = new Image();
  publications2.src = "../images/publicationson.gif";
  brochure = new Image();
  brochure.src = "../images/brochure.gif";
  brochure2 = new Image();
  brochure2.src = "../images/brochureon.gif";
  partners = new Image();
  partners.src = "../images/partners.gif";
  partners2 = new Image();
  partners2.src = "../images/partnerson.gif";
  contact = new Image();
  contact.src = "../images/contact.gif";
  contact2 = new Image();
  contact2.src = "../images/contacton.gif";
  a1 = new Image();
  a1.src = "images/1.gif";
  a12 = new Image();
  a12.src = "images/1on.gif";
  a2 = new Image();
  a2.src = "images/2.gif";
  a22 = new Image();
  a22.src = "images/2on.gif";
  a3 = new Image();
  a3.src = "images/3.gif";
  a32 = new Image();
  a32.src = "images/3on.gif";
  a4 = new Image();
  a4.src = "images/4.gif";
  a42 = new Image();
  a42.src = "images/4on.gif";
  a5 = new Image();
  a5.src = "images/5.gif";
  a52 = new Image();
  a52.src = "images/5on.gif";
  premium = new Image();
  premium.src = "../publications/images/premium.gif";
  premium2 = new Image();
  premium2.src = "../publications/images/premiumon.gif";
  professional = new Image();
  professional.src = "../publications/images/professional.gif";
  professional2 = new Image();
  professional2.src = "../publications/images/professionalon.gif";
  overview = new Image();
  overview.src = "../publications/images/overview.gif";
  overview2 = new Image();
  overview2.src = "../publications/images/overviewon.gif";
  cart = new Image();
  cart.src = "../publications/images/addToCart.gif";
  cart2 = new Image();
  cart2.src = "../publications/images/addToCartOn.gif";
  checkOut = new Image();
  checkOut.src = "../publications/images/checkOut.gif";
  checkOut2 = new Image();
  checkOut2.src = "../publications/images/checkOutOn.gif";
  viewCurrentOrder = new Image();
  viewCurrentOrder.src = "../publications/images/viewCurrentOrder.gif";
  viewCurrentOrder2 = new Image();
  viewCurrentOrder2.src = "../publications/images/viewCurrentOrderOn.gif";
  
}
function OnImage(name) {
	if (document.images) {
		fullname = eval(name + "2");
		document[name].src = fullname.src;
	}
}
function OffImage(name) {
  if (document.images) {
    fullname = eval(name);
	if (fullname.complete) {
      document[name].src = fullname.src;
	}
  }
}
//-->