$(document).ready(function(){  


    $(".edit-box ul:visible").hide('slow');
    $(".edit-box .edit-box-opener").click(function(){
        $(".edit-box ul:visible").hide('fast');
        $(".edit-box").css('z-index', '30'); 
        $(this).parent('.edit-box').css('z-index', '50');
        $(this).parent('.edit-box').children('ul').show('fast'); 
        return false;
    });
    $(".edit-box .edit-box-closer").click(function(){
        $(".edit-box").css('z-index', '30'); 
        $(".edit-box ul:visible").hide('fast');
        $(this).parent('.edit-box').children('ul').show('fast'); 
        return false;
    });
    
    
    
    
 
    
    
    $(".confirm_opener").click(function(){
        $(this).parent('form').children('.confirm').show('fast');
        return false;
    });
    $(".confirm i").click(function(){
        $(this).parent('.confirm').hide('fast');
        return false;
    });

    
    
    
    

    $("#buchung li.box:visible").hide('fast');
    $("#buchung h4").click(function(){
        $("#buchung li.box").toggle('slow');
        return false;
    });

        
    
    

    $('ul#settings li div.box:visible').hide('slow');
    $('ul#settings li h4').click(function(){
        $('ul#settings li div.box:visible').hide('fast');
        $(this).parent('li').children('div.box').show('fast'); 
        return false;
    });
    
    $('ul#hintergruende li input').hide();
    $('ul#hintergruende li').click(function(){
        $('ul#hintergruende li').children('input').removeAttr('checked');
        $('ul#hintergruende li').removeClass('active');
        $(this).children('input').attr('checked', 'checked');
        $(this).addClass('active');
        return false;
    });

    
                                
});
