/**
 * Snepo fancybox JS
 *
 * Here we provide an AJAX implementation for the contact form, with a normal POST fallback
 */
$(function() {
  
  $('a.snepo_fancybox').each(function() {
    $( this ).fancybox({
      titlePosition: 'over',
      transitionIn: 'fade',
      transitionOut: 'fade',
      centerOnScroll: true
    });
  });
  
});
