/*<![CDATA[*/

function IMG_MouseOver(Img_ID) {
    switch (Img_ID) {
        case "IMG_Work": { $('#IMG_Work').attr("src", "Pictures/Teksten/work_on.png"); break }
        case "IMG_Publications": { $('#IMG_Publications').attr("src", "Pictures/Teksten/publications_on.png"); break }
        case "IMG_Text": { $('#IMG_Text').attr("src", "Pictures/Teksten/text_on.png"); break }
        case "IMG_Exhibitions": { $('#IMG_Exhibitions').attr("src", "Pictures/Teksten/exhibitions_on.png"); break }
        case "IMG_Biography": { $('#IMG_Biography').attr("src", "Pictures/Teksten/biography_on.png"); break }
        case "IMG_CV": { $('#IMG_CV').attr("src", "Pictures/Teksten/cv_on.png"); break }
        case "IMG_Contact": { $('#IMG_Contact').attr("src", "Pictures/Teksten/contact_on.png"); break }
    }
}

function IMG_MouseOut(Img_ID) {
    switch (Img_ID) {
        case "IMG_Work": { $('#IMG_Work').attr("src", "Pictures/Teksten/work_off.png"); break }
        case "IMG_Publications": { $('#IMG_Publications').attr("src", "Pictures/Teksten/publications_off.png"); break }
        case "IMG_Text": { $('#IMG_Text').attr("src", "Pictures/Teksten/text_off.png"); break }
        case "IMG_Exhibitions": { $('#IMG_Exhibitions').attr("src", "Pictures/Teksten/exhibitions_off.png"); break }
        case "IMG_Biography": { $('#IMG_Biography').attr("src", "Pictures/Teksten/biography_off.png"); break }
        case "IMG_CV": { $('#IMG_CV').attr("src", "Pictures/Teksten/cv_off.png"); break }
        case "IMG_Contact": { $('#IMG_Contact').attr("src", "Pictures/Teksten/contact_off.png"); break }
    }
}


function Text_Border_bottom() {
    try {
        var texta = document.getElementById('DIV_Texta');
        var textb = document.getElementById('DIV_Textb');

        if (textb.offsetHeight > texta.offsetHeight) {
            textb.style.left = "286px";
            textb.style.width = "269px";
            textb.style.zIndex = "8";
            texta.style.zIndex = "9";
            texta.style.width = "286px";
        }
    }
    catch (err) {
    }
}

function Textb_Border_bottom() {
    try {
        var textb = document.getElementById('DIV_Textb');
        var textc = document.getElementById('DIV_Textc');
        var textcb = document.getElementById('DIV_Textcb');
        var textcont = document.getElementById('DIV_Content');
        
        if (textc.offsetHeight > textb.offsetHeight) {
            textc.style.left = "556px";
            textc.style.zIndex = "10";
            textb.style.width = "271px";

            textcb.style.left =  "-1";
            textcb.style.height = textc.offsetHeight - textb.offsetHeight;
            textcb.style.top = textb.offsetHeight -1;
        }
      
    }
    catch (err) {
    }
}


function exhi_Border_bottom() {
    try {
        var exhia = document.getElementById('DIV_Exhia');
        var exhib = document.getElementById('DIV_Exhib');

        if (exhib.offsetHeight > exhia.offsetHeight) {
            exhib.style.left = "286px";
            exhib.style.zIndex = "8";
            exhia.style.zIndex = "9";
            exhia.style.width = "286px";
        }
    }
    catch (err) {
    }
}

function publi_Border_bottom() {
    try {
        var publia = document.getElementById('DIV_publia');
        var publib = document.getElementById('DIV_publib');

        if (publib.offsetHeight > publia.offsetHeight) {
            publib.style.left = "286px";
            publib.style.zIndex = "8";
            publia.style.zIndex = "9";
            publia.style.width = "286px";
        }
    }
    catch (err) {
    }
}


function CV_Border_bottom() {
    try {
        var onema = document.getElementById('DIV_CV_oneman');
        var group = document.getElementById('DIV_CV_group');
        var publi = document.getElementById('DIV_CV_publications');

        if (onema.offsetHeight > group.offsetHeight) {
            if (onema.offsetHeight > publi.offsetHeight) {
                if (group.offsetHeight < publi.offsetHeight) {
                    // G K M.
                    publi.style.borderLeft = "1px black solid";
                    onema.style.borderRight = "1px black solid";
                    publi.style.zIndex = "8";
                    onema.style.zIndex = "8";
                    group.style.zIndex = "9";
                }
                else {
                    if (group.offsetHeight > publi.offsetHeight) {
                        // G M K.
                        onema.style.borderRight = "1px black solid";
                        group.style.borderRight = "1px black solid";
                        group.style.width = "270px";
                    }
                    else {
                        // G M M.
                        onema.style.borderRight = "1px black solid";
                    }
                }
            }
            else {
                // M K G.
                publi.style.borderLeft = "1px black solid";
                onema.style.borderRight = "1px black solid";
                publi.style.zIndex = "8";
                onema.style.zIndex = "8";
                group.style.zIndex = "9";
            }
        }
        else {
            if (group.offsetHeight > publi.offsetHeight) {
                // M G K.  ,  K G M.  ,  M G M.
                onema.style.width = "286px";
                group.style.width = "269px";
                group.style.borderLeft = "1px black solid";
                group.style.borderRight = "1px black solid";
                publi.style.zIndex = "9";
                onema.style.zIndex = "9";
                group.style.zIndex = "8";
            }
            else {
                if (group.offsetHeight > onema.offsetHeight) {
                    // K M G.
                    onema.style.width = "286px";
                    group.style.width = "270px";
                    group.style.borderLeft = "1px black solid";
                    publi.style.borderLeft = "1px black solid";
                    publi.style.zIndex = "8";
                    onema.style.zIndex = "10";
                    group.style.zIndex = "9";
                }
                else {
                    // M M G.
                    publi.style.borderLeft = "1px black solid";
                    publi.style.zIndex = "8";
                    onema.style.zIndex = "10";
                    group.style.zIndex = "9";
                }
            }
        }
    }
    catch (err) {
    }
}

function load() {
    Sys.WebForms.PageRequestManager.getInstance().add_endRequest(CV_Border_bottom);
    Sys.WebForms.PageRequestManager.getInstance().add_endRequest(Text_Border_bottom);
    Sys.WebForms.PageRequestManager.getInstance().add_endRequest(Textb_Border_bottom);
    Sys.WebForms.PageRequestManager.getInstance().add_endRequest(exhi_Border_bottom);
    Sys.WebForms.PageRequestManager.getInstance().add_endRequest(publi_Border_bottom);
}

/*]]>*/     
