     $(document).ready(function() {
          $("#prijsLink, #reserveerLink").click(function(){
          	$("#reserveerContent").toggle();
          	$("#prijsContent").toggle();
          	$(this).parent().addClass("active");
          	$(this).parent().removeClass("inactive");
          	$(this).parent().siblings().removeClass("active");
          	$(this).parent().siblings().addClass("inactive");
          	$(this).blur();
          	$('#rightContent').redrawShadow();
          	return false;
          	});
	  	$('#mainfoto').innerfade({  
			speed: 2500,
			timeout: 4000,  
			type: 'sequence',
			containerheight:'245px'
			}); 
	  });
	  $(window).load(function() {
	  	$('#leftContent, #rightContent').dropShadow()
	  });
