function setLoading(divid) {
    $(divid)
        .html(
            '<center><img src="/css/loading.gif" alt="Loading..." title="Loading..." /></center>');
    $(divid).show();
}

function handleExpandBoxClick(element, id) {
    if ($('#' + id).is(':visible')) {
        //$('#' + id).slideUp('medium');
        $('#' + id).hide();
        $('#expandBox_menuLeft_' + id).hide();
        $('#expandBox_menuRight_' + id).hide();
    } else {
        $('#' + id).show();
        $('#expandBox_menuLeft_' + id).show();
        $('#expandBox_menuRight_' + id).show();
    }
    //$('#' + id).slideToggle('medium');
    //$('#expandBox_menuLeft_' + id).toggle();
    //$('#expandBox_menuRight_' + id).toggle();
    $(element).toggleClass('ico1');
    $(element).parent('.grayBox').toggleClass('grayBox1');
    return false;
}
