$(document).ready(function(){
    var current = -1;
    if (undefined != $("#collapsing h3.active").attr("id")) {
        curid  = $("#collapsing h3.active").attr("id");
        pos1 = curid.indexOf("-");
        current = curid.substring(pos1+1, pos1+3);
    }
    var id  = -1;
    var pos = -1;
    
    $("#collapsing h3").click(function(){
        // Položky u kterých nechceme rozbalovací menu
        if ($(this).hasClass("letsGo")) {
            return true;
        }
        
        id  = $(this).attr("id");
        pos = id.indexOf("-");
        
        // Získání id jako čísla
        //id = Number(id.substring(pos+1, pos+3));
        id = id.substring(pos+1, pos+3);
        
        // Skrytí předchozího elementu
        if (current != -1 && current != id) {
            $("#child-"+ current).slideUp("normal");
            $("#parent-"+ current).removeClass("active");
        }
        
        // Skrytí/Zobrazení zvolené položky
        $("#child-"+ id).slideToggle("normal", function(){ $("#parent-"+ id).toggleClass("active"); });
        current = id;

        return false;
    });
})

