$(document).ready(function() {



  $('#menu ul')
	  .click(function(e) {
		  e.stopPropagation();	
	  })
	  .filter(':not(:first)')
	  .hide();
  
  $('#menu ul > li, #menu2 > div > div > li').hover(function() {
	  $(this)
	  .find('> ul')
	  .stop(true, true)
	  .slideDown('fast');
  }, function() {
	  $(this)
	  .find('> ul')
	  .stop(true, true)
	  .slideUp('fast');
  });




$('#content').find('img').not('.down').not('.captchapict').not('table img').rcorner({
bgImageLocation: 'afbeeldingen/hoekjes.png',
bgImageWidth: '18px',
bgImageHeight: '18px'
});



  $('#cal-calendar .dagmetevent > ul > li > .samenvatting')
     .hide();

  $('#cal-calendar .dagmetevent > ul > li').hover(function(){
     $(this)
     .find('> .samenvatting')
     .stop(true, true)
     .show();
  }, function() {
     $(this)
     .find('> .samenvatting')
     .stop(true, true)
     .hide();
  });



});

