<!--
  function MenuHide(dur) {
		$('#footer').hide();
		
		var buttonsall = -203;
		var buttons2 = -130;
		var buttons1 = -65;
		
		switch(activeMenu)
		{
		case 1:
  		$('#button2').animate({top:buttons2}, {duration: dur});
  		$('#button3').animate({top:buttons2}, {duration: dur}); 
  		$('#menufooter').animate({top:buttons2}, {duration: dur}); 
  		$('#content').animate({top:buttons2}, {duration: dur});
			subtitle = ' - Visie';
			quoteShow(); 
		  break;
		case 2:
  		$('#button1').animate({top:buttons1}, {duration: dur});
  		$('#button2').animate({top:buttons1}, {duration: dur});
  		$('#button3').animate({top:buttons2}, {duration: dur}); 
  		$('#menufooter').animate({top:buttons2}, {duration: dur}); 
  		$('#content').animate({top:buttons2}, {duration: dur});
			subtitle = ' - Werkwijze';
		  break;
		case 3:
  		$('#button1').animate({top:buttons1}, {duration: dur});
  		$('#button2').animate({top:buttons2}, {duration: dur});
  		$('#button3').animate({top:buttons2}, {duration: dur}); 
  		$('#menufooter').animate({top:buttons2}, {duration: dur}); 
  		$('#content').animate({top:buttons2}, {duration: dur});
			subtitle = ' - Verhalen'; 
		  break;
		default:
			$('#button1').animate({top:buttonsall}, {duration: dur}); 
			$('#button2').animate({top:buttonsall}, {duration: dur});
			$('#button3').animate({top:buttonsall}, {duration: dur}); 
			$('#menufooter').animate({top:buttonsall}, {duration: dur}); 
			$('#content').animate({top:buttonsall}, {duration: dur});
			subtitle = ''; 
		}
 		document.title = basetitle+subtitle; 
		$('.content').hide();
		$('#content'+activeMenu).show();
		menuShow = false;
	  var y = $(document).height();
	  $('#footer').css("top", y);
		$('#footer').show();
  }

  function MenuShow(dur) {
		$('#button1').animate({top:0}, {duration: dur}); 
		$('#button2').animate({top:0}, {duration: dur});
		$('#button3').animate({top:0}, {duration: dur}); 
		$('#menufooter').animate({top:0}, {duration: dur}); 
		$('#content').animate({top:0}, {duration: dur}); 
		menuShow = true;
  }
//-->
