// JavaScript Document    

$(document).ready(function(){                 
    $('.accordion2').accordion2();
    $(".left #accordion").accordion({ collapsible: true, active: 0,autoHeight: false,clearStyle: true});
    $(".right #accordion").accordion({ collapsible: true, active: 0,autoHeight: false,clearStyle: true});
    $('.block').click(function() {
        $('.layer').fadeOut('slow');
        $('.block').fadeOut('slow');  
        $('.block1').fadeOut('slow');
        $('iframe').show();
    });
    $("a[href='#sluiten']").click(function() {
        $('.layer').fadeOut('slow');
        $('.block').fadeOut('slow');
        $('.block1').fadeOut('slow');
        $('iframe').show();
       return false; 
    });
       $('#nav ul').droppy();  
    
  });
