function toggle_profile (element) {

    switch_id = element + '_switch';

    Effect.toggle(element, 'blind'); 

    if (!$(element).visible()) {
        $(switch_id).innerHTML = 'Hide Profile';
    } else {
        $(switch_id).innerHTML = 'Show Profile';
    }
    
    return false;
    
}

function toggle_sidebox (element) {

    arrow_id = element + '_arrow';

    if (!$(element).visible()) {
        $(arrow_id).src = 'images/arrow_up.gif';
    } else {
        $(arrow_id).src = 'images/arrow_down.gif';
    }
    
    Effect.toggle(element, 'blind'); 

    return false;

}
