browserOK = true;

window.onerror=null;

if (document.images) {
        resim1on = new Image();
        resim1on.src = "/images_production_general/LK_nav_01-over.gif";
        resim1off = new Image();
        resim1off.src = "/images_production_general/LK_nav_01.gif";
        resim1ax = new Image();
        resim1ax.src = "/images_production_general/LK_nav_01-over.gif";

        resim2on = new Image();
        resim2on.src = "/images_production_general/LK_nav_02-over.gif";
        resim2off = new Image();
        resim2off.src = "/images_production_general/LK_nav_02.gif";
        resim2ax = new Image();
        resim2ax.src = "/images_production_general/LK_nav_02-over.gif";

        resim3on = new Image();
        resim3on.src = "/images_production_general/LK_nav_03-over.gif";
        resim3off = new Image();
        resim3off.src = "/images_production_general/LK_nav_03.gif";
        resim3ax = new Image();
        resim3ax.src = "/images_production_general/LK_nav_03-over.gif";

        resim4on = new Image();
        resim4on.src = "/images_production_general/LK_nav_04-over.gif";
        resim4off = new Image();
        resim4off.src = "/images_production_general/LK_nav_04.gif";
        resim4ax = new Image();
        resim4ax.src = "/images_production_general/LK_nav_04-over.gif";

        resim5on = new Image();
        resim5on.src = "/images_production_general/LK_nav_05-over.gif";
        resim5off = new Image();
        resim5off.src = "/images_production_general/LK_nav_05.gif";
        resim5ax = new Image();
        resim5ax.src = "/images_production_general/LK_nav_05-over.gif";
  
        resim6on = new Image();
        resim6on.src = "/images_production_general/LK_nav_06-over.gif";
        resim6off = new Image();
        resim6off.src = "/images_production_general/LK_nav_06.gif";
        resim6ax = new Image();
        resim6ax.src = "/images_production_general/LK_nav_06-over.gif";
  
        resim7on = new Image();
        resim7on.src = "/images_production_general/LK_nav_07-over.gif";
        resim7off = new Image();
        resim7off.src = "/images_production_general/LK_nav_07.gif";
        resim7ax = new Image();
        resim7ax.src = "/images_production_general/LK_nav_07-over.gif";
  
        resim8on = new Image();
        resim8on.src = "/images_production_general/LK_nav_08-over.gif";
        resim8off = new Image();
        resim8off.src = "/images_production_general/LK_nav_08.gif";
        resim8ax = new Image();
        resim8ax.src = "/images_production_general/LK_nav_08-over.gif";
        dummyon = new Image();
        dummyoff  = new Image();
  }
function rol(isim) {
        if (document.images) {
        imgOn = eval(isim + "on.src");
        document [isim].src = imgOn;
        }
}
function geri(isim) {
        if (document.images) {
        imgOff = eval(isim + "off.src");
        document [isim].src = imgOff;
        }
}
 

// Correctly handle PNG transparency in Win IE 5.5 or higher.
// http://homepage.ntlworld.com/bobosola. Updated 02-March-2004
function correctPNG() 
   {
   for(var i=0; i<document.images.length; i++)
      {
   var img = document.images[i]
   var imgName = img.src.toUpperCase()
   if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
      {
   var imgID = (img.id) ? "id='" + img.id + "' " : ""
   var imgClass = (img.className) ? "class='" + img.className + "' " : ""
   var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "
   var imgStyle = "display:inline-block;" + img.style.cssText 
   if (img.align == "left") imgStyle = "float:left;" + imgStyle
   if (img.align == "right") imgStyle = "float:right;" + imgStyle
   if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle  
   var strNewHTML = "<span " + imgID + imgClass + imgTitle
   + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
      + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
   + "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>" 
   img.outerHTML = strNewHTML
   i = i-1
      }
      }
   }
window.attachEvent("onload", correctPNG);