$(document).ready(function(){
	
	
	 var th = $('#container').height()- 68 -20; //+ $j('#footer').height();
   $('#hoofdmenu>li').hover(function(){
      var mh = $('ol', this).outerHeight();
      if (th>mh){h=th;}else{h=mh};

      if (h>1184){h=1184;} 

      $(this).addClass("active");
      $('ol', this).css({height:h,paddingBottom:'0'}).slideDown(200);
   },function(){
         $(this).removeClass('active');
      $('ol', this).stop().hide().removeAttr("style");
   });
 


});

