$(document).ready(function() {   
//    $('.accordeon .title').click(function (){
//        $(this).next('.content').show(3000);
//    });
    $('#bil_info').load('html.html')

    $('.accordeon .title').toggle(function() {
        $(this).parent().children('.content').hide(3000);
        $(this).next('.content').show(3000);
        
        
    }, function() {
        $(this).next('.content').hide(3000);
});
  
    }); 
