window.onload = function() {
    var mailtoImg = document.getElementById("mailtoImg");

    mailtoImg.onmouseover = function(){
        this.src = "images/index/mail_over.png";
    }

    mailtoImg.onmouseout  = function(){
        this.src = "images/index/mail.png";
    }


    var gae = document.getElementById("gaeBut");

    gae.onclick = function(){
        document.getElementById("forasGae").style.display = "inline";
        document.getElementById("forasEng").style.display = "none";
        document.getElementById("gae").style.display = "block";
        document.getElementById("eng").style.display = "none";
        document.getElementById("engBut").className='link';
        this.className = "current";
        return false;
    }

    var eng = document.getElementById("engBut");

    eng.onclick = function(){
        document.getElementById("forasEng").style.display = "inline";
        document.getElementById("forasGae").style.display = "none";
        document.getElementById("eng").style.display = "block";
        document.getElementById("gae").style.display = "none";
        document.getElementById("gaeBut").className='link';
        this.className = "current";
        return false;
    }

    //precache rollover image
    var img = new Image()
    img.src = "images/index/mail_over.png";
}

google_ad_client = "pub-0560089597697955";
/* 468x60, created 10/11/09 */
google_ad_slot = "5354527746";
google_ad_width = 468;
google_ad_height = 60;
