$(function(){
    $(".colorbox").colorbox({
        maxHeight:"98%",
        current: "{current} / {total}"            
    });
    
     $(".cs ul ul").hide();
     $(".cs ul").hide();     
     $(".cs a").each(function(){
        var hr = $(this).attr("href");
        var s = document.location.toString();
        if (document.location.toString().indexOf(hr)>-1 ){
            $(this).next("ul").show();
            $(this).parents("ul").show();
        }
        if(s.indexOf(hr) >=0  ){
            $(this).addClass("aktiv");
        }
     }); 
     
     $('.torol').click(function(){
         var id = $(this).attr('id');
         $('#lista').html('');
          $.ajax({
               type: "get",
               url: "index.php",
               data: 'mod=online&del='+id,
               success: function(html){
                    $('#lista').html(html);
               }
             });
         return false;
    });
 });

