// JavaScript Document
    function showLink(){
        try{
             window.document.getElementById("splash_info").style.width = "745px";
             window.document.getElementById("splash_info").style.backgroundColor = "white";
             window.document.getElementById("splash_info").style.textIndent = "5px";
             window.document.getElementById("splash_info").style.borderRight = "1px solid #D2CEBA";
             window.document.getElementById("splash_info").style.borderBottom = "1px solid #D2CEBA";
             window.document.getElementById("splash_info").style.paddingLeft = "20px";
             window.document.getElementById("splash_info").style.backgroundPosition = "0px -16px";
        }catch(e){}
    }
    function hideLink(){
        try{
             window.document.getElementById("splash_info").style.width = "16px";
             window.document.getElementById("splash_info").style.backgroundColor = "white";
             window.document.getElementById("splash_info").style.textIndent = "-5000px";
             window.document.getElementById("splash_info").style.border = "0px solid #D2CEBA";
             window.document.getElementById("splash_info").style.paddingLeft = "0px";
             window.document.getElementById("splash_info").style.backgroundPosition = "0px 0px";
        }catch(e){}
    }

    function switchBlogboardActive(){
        try{ 
             obj = window.document.getElementById("blogboardLink");
             obj.style.color = "white";
             obj.style.backgroundColor = "#FF8E32"; 
        }catch(e){ alert(e); }
    }
    function switchBlogboardInActive(){
        try{
             obj = window.document.getElementById("blogboardLink");
             obj.style.color = "#352A16";
             obj.style.backgroundColor = "transparent"; 
        }catch(e){ alert(e); }
    }    
