<!--//--><![CDATA[//><!--

/******************************************************************************
 * 
 *  javascript functions for enabling the CSS menus on IE 5/6
 * 
 ******************************************************************************/

sfHover = function() {
  ismac = ( (navigator.userAgent.indexOf("mac") != -1) || (navigator.userAgent.indexOf("Mac") != -1) );  
//    var mac = (navigator.userAgent.indexOf("mac") != -1);
    
    if(document.all&&document.getElementById){ // ie only
        var sfEls = document.getElementById("nav").getElementsByTagName("LI");
        for (var i=0; i<sfEls.length; i++) {
            sfEls[i].onmouseover=function() {   this.className+=" over";    }
            sfEls[i].onmouseout=function() {    this.className=this.className.replace(new RegExp(" over\\b"), "");   }
        }
        
        // side navigation
        // turned off IE mac hovers due to css complications
        if(document.getElementById("sidenav") && (!ismac)) {
            var sfEls = document.getElementById("sidenav").getElementsByTagName("LI");
            for (var i=0; i<sfEls.length; i++) {
                sfEls[i].onmouseover=function() {   this.className+=" over";    }
                sfEls[i].onmouseout=function() {    this.className=this.className.replace(new RegExp(" over\\b"), "");   }        
            }
        }
        
        
    }
}

// (C) 2002 www.CodeLifter.com
// frontpage logo rotating script
var SlideShowSpeed = 3000;
var CrossFadeDuration = 4;
var Picture = new Array(); 
var Caption = new Array(); 
Picture[1]  = 'customers/logo21.gif';
Picture[2]  = 'customers/logo22.gif';
Picture[3]  = 'customers/logo23.gif';
Picture[4]  = 'customers/logo24.gif';
Picture[5]  = 'customers/logo25.gif';
Picture[6]  = 'customers/logo26.gif';
Picture[7]  = 'customers/logo27.gif';
Picture[8]  = 'customers/logo28.gif';
Picture[9]  = 'customers/logo29.gif';
Picture[10]  = 'customers/img_customers_l_koreawizenu.gif';
Picture[11]  = 'customers/logo31.gif';
Picture[12]  = 'customers/logo32.gif';
Picture[13]  = 'customers/logo33.gif';
Picture[14]  = 'customers/logo34.gif';
Picture[15]  = 'customers/logo5.gif';
Picture[16]  = 'customers/logo6.gif';
Picture[17]  = 'customers/logo7.gif';
Picture[18]  = 'customers/logo8.gif';
Picture[19]  = 'customers/logo9.gif';
Picture[20]  = 'customers/logo10.gif';
Picture[21]  = 'customers/logo1.gif';
Picture[22]  = 'customers/logo2.gif';
Picture[23]  = 'customers/logo11.gif';
Picture[24]  = 'customers/logo12.gif';
Picture[25]  = 'customers/logo13.gif';
Picture[26]  = 'customers/logo14.gif';
Picture[27]  = 'customers/logo15.gif';
Picture[28]  = 'customers/logo16.gif';
Picture[29]  = 'customers/logo17.gif';
Picture[30]  = 'customers/logo19.gif';
Picture[31]  = 'customers/logo20.gif';
Picture[32]  = 'customers/logo3.gif';
Picture[33]  = 'customers/logo4.gif';
Picture[34]  = 'customers/logo35.gif';
Picture[35]  = 'customers/logo36.gif';
Caption[1]  = " ";
Caption[2]  = " ";
Caption[3]  = " ";
Caption[4]  = " ";
Caption[5]  = " ";
Caption[6]  = " ";
Caption[7]  = " ";
Caption[8]  = " ";
Caption[9]  = " ";
Caption[10]  = " ";
Caption[11]  = " ";
Caption[12]  = " ";
Caption[13]  = " ";
Caption[14]  = " ";
Caption[15]  = " ";
Caption[16]  = " ";
Caption[17]  = " ";
Caption[18]  = " ";
Caption[19]  = " ";
Caption[20]  = " ";
Caption[21]  = " ";
Caption[22]  = " ";
Caption[23]  = " ";
Caption[24]  = " ";
Caption[25]  = " ";
Caption[26]  = " ";
Caption[27]  = " ";
Caption[28]  = " ";
Caption[29]  = " ";
Caption[30]  = " ";
Caption[31]  = " ";
Caption[32]  = " ";
Caption[33]  = " ";
Caption[34]  = " ";
Caption[35]  = " ";
var tss;
var iss;
var jss = 1;
var pss = Picture.length-1;
var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}
function runSlideShow(){
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=3)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}
//if (window.attachEvent) window.attachEvent("onload", sfHover);
//window.onload=sfHover;
//--><!]]>