$(document).ready(function() {

  // crop quotebox, toon totale inhoude bij hover
  qh= $('.erv_box').height(); 
  $('.erv_box').css({'height':'76px','overflow':'hidden'});
	$('#quotebox').hover(function(){
	  if (parseInt(qh)>76) $('.erv_box').animate({ height:qh}, 400);	}, function(){ $('.erv_box').animate({ height:'76px'}, 400)});
		
	// verberg tijdelijk actieve menu items bij hover	
	$('.menukop').hover(function(){
	  store=$('.act'); store.removeClass('act');},
		function(){store.addClass('act')});
		
});
