 $(document).ready(function(){                          
    $("#zoek").focus(function(){
        if($(this).val()=='Zoeken...')  $(this).val('');
    });
    $("#zoek").blur(function(){
        if($(this).val()=='')  $(this).val('Zoeken...');
    });                                                                          
    $("a[href^='http:']").not("[href*='www.budoschuttersveld.nl']").attr('target','_blank'); 

    $("a[href='#sluiten']").click(function() {
        $('.layer').fadeOut('slow');
        $('.block').fadeOut('slow');
        $('.block1').fadeOut('slow');
       return false; 
    });    
    $(".layer, .block, .block1").click(function() {
        $('.layer').fadeOut('slow');
        $('.block').fadeOut('slow');
        $('.block1').fadeOut('slow');
       return false; 
    });    
});
