// Do *NOT* depend on this menu code, it *will* be rewritten in later versions
// of Plone. This is a quick fix that will be replaced with something more
// elegant later.

/*




*/

// functions for Objectis

function swapDisplay2(post_id, img_col_id, img_exp_id, title_id) {
    elem_style = document.getElementById(post_id).style;
    img_exp_style = document.getElementById(img_exp_id).style;
    img_col_style = document.getElementById(img_col_id).style;
    title_style = document.getElementById(title_id).style;
    
    if (elem_style.display == 'block') {
        elem_style.display = 'None';
        img_exp_style.display = 'None';
        img_col_style.display = 'block';
        title_style.fontWeight = 'normal';
    }
    else {
        elem_style.display = 'block';
        img_exp_style.display = 'block';
        img_col_style.display = 'None';
        title_style.fontWeight = 'bold';
    }
}