var switcher_plus  = "<img border='0' src='/images/switcher_plus.gif' alt='Посмотреть подразделы' title='Посмотреть подразделы'/></a>";
var switcher_minus = "<img border='0' src='/images/switcher_minus.gif' alt='Скрыть подразделы' title='Скрыть подразделы'/>";
var switcher_empty = "<img border='0' src='/images/switcher_empty.gif' alt='Подразделов нет' title='Подразделов нет'/>";

$(document).ready(function(){
    $(".button_1").each(function(idx, el) {
        el_id = parseInt(el.id.toString().replace("button_", ""));
        if ($("#sub_" + el_id).attr("id")) {
            // Has children
            switch_off(el_id);
            
        } else {
            // Single button
            $("#switcher_place_" + el_id).html(switcher_empty);
        }
    });
    
    switch_on(current_uri_idx);
});

function switch_on(el_id)
{
    if ($("#sub_" + el_id).attr("id")) {
        $("#switcher_place_" + el_id).html("<a href='javascript:switch_off(\"" + el_id + "\")'>" + switcher_minus + "</a>");
        $("#sub_" + el_id).css("display", "block");
    }
}

function switch_off(el_id)
{
    if ($("#sub_" + el_id).attr("id")) {
        $("#switcher_place_" + el_id).html("<a href='javascript:switch_on(\"" + el_id + "\")'>" + switcher_plus + "</a>");
        $("#sub_" + el_id).css("display", "none");
    }
}
