$(function() {
  
  // Foto gallery inschakelen
  $('#gallery-div a').lightBox();
  
  // Recepten appart afdrukken functie
  $(".print-div").click(function() {
    
    options = {
      printMode: 'popup',
      leaveOpen: true,
      overrideElementCSS: ['/style/print.css']
    }
    $(this).parent().printElement(options);


  }); 
  
  // Geanimeerde scroll naar ankerpunt
  $.localScroll();
  
}); 