<!--//

{

productsoff = new Image();
productsoff.src = "graphics/index_products_off.gif";
productson = new Image();
productson.src = "graphics/index_products_on.gif";
productshover = new Image();
productshover.src = "graphics/index_products_hover.gif";

supportoff = new Image();
supportoff.src = "graphics/index_support_off.gif";
supporton = new Image();
supporton.src = "graphics/index_support_on.gif";
supporthover = new Image();
supporthover.src = "graphics/index_support_hover.gif";

aboutoff = new Image();
aboutoff.src = "graphics/index_about_off.gif";
abouton = new Image();
abouton.src = "graphics/index_about_on.gif";
abouthover = new Image();
abouthover.src = "graphics/index_about_hover.gif";

newsoff = new Image();
newsoff.src = "graphics/index_news_off.gif";
newson = new Image();
newson.src = "graphics/index_news_on.gif";
newshover = new Image();
newshover.src = "graphics/index_news_hover.gif";

careersoff = new Image();
careersoff.src = "graphics/index_careers_off.gif";
careerson = new Image();
careerson.src = "graphics/index_careers_on.gif";
careershover = new Image();
careershover.src = "graphics/index_careers_hover.gif";

contactoff = new Image();
contactoff.src = "graphics/index_contact_off.gif";
contacton = new Image();
contacton.src = "graphics/index_contact_on.gif";
contacthover = new Image();
contacthover.src = "graphics/index_contact_hover.gif";

eadsnaoff = new Image();
eadsnaoff.src = "graphics/global_eadsna_off.gif";
eadsnahover = new Image();
eadsnahover.src = "graphics/global_eadsna_hover.gif";

loginoff = new Image();
loginoff.src = "graphics/global_login_off.gif";
loginhover = new Image();
loginhover.src = "graphics/global_login_hover.gif";

}

function changeImage(imgDocID1,imgObjName1) {
{
document.images[imgDocID1].src = eval(imgObjName1 + ".src");}
}

Menus = function() {
var mnEls = document.getElementById("menu").getElementsByTagName("LI");
    for (var i = 0; i < mnEls.length; i++) {
        mnEls[i].onmouseover = function() {
            this.className += " hover";
        }
        mnEls[i].onmouseout = function() {
            this.className = this.className.replace(new RegExp(" hover\\b"), "");
        }
    }
}
if (window.attachEvent) window.attachEvent("onload", Menus);
 

function onReturn(e) {

    if (!e) var e = window.event
    if (e.keyCode) code = e.keyCode;
    else if (e.which) code = e.which;
  //  alert(code)
    if (code == 13)
    {
     if (document.getElementById('Cheader1_txtSearch').value !='')
        {
         location.href = "products_listing.aspx?sparam=" + document.getElementById('Cheader1_txtSearch').value;
         window.event.returnValue=false;
       }
      }
}
//-->
