$(document).ready(function() {
  $('div#menu>ul>li>ul>li:has(ul)').webetui_pulldown({aniLen:300, hideDelay:500, slideUp:false});
  
  $('div#menu a#nl').click(function(e) {
    location = location.pathname.replace(/en/, 'nl');
    return false;
  });
  
  $('div#menu a#en').click(function(e) {
    location = location.pathname.replace(/nl/, 'en');
    return false;
  });
  
  var wrapper_height = $('div#wrapper').height();
  var bgtxt_height   = $('div#bgtxt').height();
  if (wrapper_height > bgtxt_height)
    $('div#bgtxt').height(wrapper_height);
});

