$(document).ready(function(){
  //show boeken menu
  $("#boekenlink").click(function(){
    if($(".boeksub").is(":visible")){      
      $(".boeksub").hide();
    }else{       
      $(".boeksub, .boeksub ul").show();
      $(".artikelsub").hide();
   }
    return false;
  });
  
  //show artikels menu
  $("#artikelslink").click(function(){
    if($(".artikelsub").is(":visible")){   
      $(".artikelsub").hide();
    }else{       
      $(".boeksub").hide();
      $(".artikelsub").show();
    }
    return false;
  });  
  
  $("#header h1").click(function(){
    document.location.href=BASE_URL;
  });
  
  $("#header h2").click(function(){
    document.location.href=BASE_URL + 'gievandenberghe.htm';
  });
});

