function displayLang()
{
    var url = document.location.href.toLowerCase();
    var imgHead1 = document.getElementById("imgHead1");
    
    var lang1 = document.getElementById("innerLangUS");
    var lang2 = document.getElementById("innerLangUK");
    var lang3 = document.getElementById("innerLangDE");
    var lang4 = document.getElementById("innerLangES");
    var lang5 = document.getElementById("innerLangFR");
    var lang6 = document.getElementById("innerLangIT");
    var lang7 = document.getElementById("innerLangCN");
    var lang8 = document.getElementById("innerLangTW");
    
    var lang10 = document.getElementById("innerLangKO");
    
    if(url.indexOf("home-en-us.html") >= 0)
    {
        imgHead1.src = "assets/images/menu/english_us2.gif";
        imgHead1.alt = "English (US)";
        imgHead1.width="57"; 
        imgHead1.height="8";
        
        lang1.style.display = "none";
        lang2.style.top = "0px";
        lang3.style.top = "12px";
        lang4.style.top = "24px";
        lang5.style.top = "36px";
        lang6.style.top = "48px";
        lang7.style.top = "66px";
        lang8.style.top = "78px";
        lang10.style.top = "90px";
        
    }
    else if(url.indexOf("home-en-gb.html") >= 0)
    {
        imgHead1.src = "assets/images/menu/english_uk2.gif";
        imgHead1.alt = "English (UK)";
        imgHead1.width="58"; 
        imgHead1.height="8";
        
        lang2.style.display = "none";
        lang1.style.top = "0px";
        lang3.style.top = "12px";
        lang4.style.top = "24px";
        lang5.style.top = "36px";
        lang6.style.top = "48px";
        lang7.style.top = "66px";
        lang8.style.top = "78px";
        lang10.style.top = "90px";
       
    }
    else if(url.indexOf("home-de-de.html") >= 0)
    {
        imgHead1.src = "assets/images/menu/lang_deutsch2.gif";
        imgHead1.alt = "Deutsch";
        imgHead1.width="40"; 
        imgHead1.height="7";
        
        lang3.style.display = "none";
        lang1.style.top = "0px";
        lang2.style.top = "12px";
        lang4.style.top = "24px";
        lang5.style.top = "36px";
        lang6.style.top = "48px";
        lang7.style.top = "66px";
        lang8.style.top = "78px";
        lang10.style.top = "90px";
       
    }
    else if(url.indexOf("home-es-es.html") >= 0)
    {
        imgHead1.src = "assets/images/menu/lang_espanol2.gif";
        imgHead1.alt = "Espanol";
        imgHead1.width="39"; 
        imgHead1.height="8";
        
        lang4.style.display = "none";
        lang1.style.top = "0px";
        lang2.style.top = "12px";
        lang3.style.top = "24px";
        lang5.style.top = "36px";
        lang6.style.top = "48px";
        lang7.style.top = "66px";
        lang8.style.top = "78px";
        lang10.style.top = "90px";
        
    }
    else if(url.indexOf("home-fr-fr.html") >= 0)
    {
        imgHead1.src = "assets/images/menu/lang_francais2.gif";
        imgHead1.alt = "Francais";
        imgHead1.width="42"; 
        imgHead1.height="9";
        
        lang5.style.display = "none";
        lang1.style.top = "0px";
        lang2.style.top = "12px";
        lang3.style.top = "24px";
        lang4.style.top = "36px";
        lang6.style.top = "48px";
        lang7.style.top = "66px";
        lang8.style.top = "78px";
        lang10.style.top = "90px";
        
    }
    else if(url.indexOf("home-it-it.html") >= 0)
    {
        imgHead1.src = "assets/images/menu/lang_italiano2.gif";
        imgHead1.alt = "Italiano";
        imgHead1.width="39"; 
        imgHead1.height="7";
        
        lang6.style.display = "none";
        lang1.style.top = "0px";
        lang2.style.top = "12px";
        lang3.style.top = "24px";
        lang4.style.top = "36px";
        lang5.style.top = "48px";
        lang7.style.top = "66px";
        lang8.style.top = "78px";
        lang10.style.top = "90px";
        
    }
    else if(url.indexOf("home-zh-cn.html") >= 0)
    {
        imgHead1.src = "assets/images/menu/lang_chinese2.gif";
        imgHead1.alt = "简体中文";
        imgHead1.width="35"; 
        imgHead1.height="9";
        
        lang7.style.display = "none";
        lang1.style.top = "0px";
        lang2.style.top = "12px";
        lang3.style.top = "24px";
        lang4.style.top = "36px";
        lang5.style.top = "48px";
        lang6.style.top = "66px";
        lang8.style.top = "78px";
        lang10.style.top = "90px";
        
    }
    else if(url.indexOf("home-zh-tw.html") >= 0)
    {
        imgHead1.src = "assets/images/menu/lang_taiwan2.gif";
        imgHead1.alt = "繁體中文";
        imgHead1.width="36"; 
        imgHead1.height="9";
        
        lang8.style.display = "none";
        lang1.style.top = "0px";
        lang2.style.top = "12px";
        lang3.style.top = "24px";
        lang4.style.top = "36px";
        lang5.style.top = "48px";
        lang6.style.top = "66px";
        lang7.style.top = "78px";
        lang10.style.top = "90px";
        
    }
    else if(url.indexOf("home-ko-kr.html") >= 0)
    {
        imgHead1.src = "assets/images/menu/lang_korean2.gif";
        imgHead1.alt = "한국어";
        imgHead1.width="26"; 
        imgHead1.height="10";
        
        lang10.style.display = "none";
        lang1.style.top = "0px";
        lang2.style.top = "12px";
        lang3.style.top = "24px";
        lang4.style.top = "36px";
        lang5.style.top = "48px";
        lang6.style.top = "66px";
        lang7.style.top = "78px";
        lang8.style.top = "90px";
        
    }
    else
    {
        imgHead1.src = "assets/images/menu/english_us2.gif";
        imgHead1.alt = "English (US)";
        imgHead1.width="57"; 
        imgHead1.height="8";
        
        lang1.style.display = "none";
        lang2.style.top = "0px";
        lang3.style.top = "12px";
        lang4.style.top = "24px";
        lang5.style.top = "36px";
        lang6.style.top = "48px";
        lang7.style.top = "66px";
        lang8.style.top = "78px";
        lang10.style.top = "90px";
        
    }
}

function dropLanguageMenu()
{
    var langDDL = document.getElementById("langDDL");
    var langSelect = document.getElementById("langSelect");
    var innerLangDDL = document.getElementById("innerLangDDL");
    
    if (langDDL.style.display == "none" || langDDL.style.display == "")
    {
        langDDL.style.display = "block";
        innerLangDDL.style.display = "block";
        langSelect.style.display = "none";
    }
    else
    {
        langDDL.style.display = "none";
        innerLangDDL.style.display = "block";
        langSelect.style.display = "block";
    }
}

function selectLang(which, state)
{
    var lang1 = document.getElementById("innerLangUS");
    var lang2 = document.getElementById("innerLangUK");
    var lang3 = document.getElementById("innerLangDE");
    var lang4 = document.getElementById("innerLangES");
    var lang5 = document.getElementById("innerLangFR");
    var lang6 = document.getElementById("innerLangIT");
    var lang7 = document.getElementById("innerLangCN");
    var lang8 = document.getElementById("innerLangTW");
    var lang10 = document.getElementById("innerLangKO");
    
    if(state == "on")
    {
        if(which == "us"){
            lang1.style.backgroundColor = "#636363";
        }else if(which == "uk"){
            lang2.style.backgroundColor = "#636363";
        }else if(which == "de"){
            lang3.style.backgroundColor = "#636363";
        }else if(which == "es"){
            lang4.style.backgroundColor = "#636363";
        }else if(which == "fr"){
            lang5.style.backgroundColor = "#636363";
        }else if(which == "it"){
            lang6.style.backgroundColor = "#636363";
        }else if(which == "cn"){
            lang7.style.backgroundColor = "#636363";
        }else if(which == "tw"){
            lang8.style.backgroundColor = "#636363";
        }else if(which == "ko"){
            lang10.style.backgroundColor = "#636363";
        }
    }
    else if(state == "off")
    {
        if(which == "us"){
            lang1.style.backgroundColor = "transparent";
        }else if(which == "uk"){
            lang2.style.backgroundColor = "transparent";
        }else if(which == "de"){
            lang3.style.backgroundColor = "transparent";
        }else if(which == "es"){
            lang4.style.backgroundColor = "transparent";
        }else if(which == "fr"){
            lang5.style.backgroundColor = "transparent";
        }else if(which == "it"){
            lang6.style.backgroundColor = "transparent";
        }else if(which == "cn"){
            lang7.style.backgroundColor = "transparent";
        }else if(which == "tw"){
            lang8.style.backgroundColor = "transparent";
        }else if(which == "ko"){
            lang10.style.backgroundColor = "transparent";
        }
    }
}

var dropDownVisible = false;