$(document).ready(function(){
  $("a.fancybox").fancybox()
  // Show "magnify" icon when hovering fancybox trigger
  $('a.fancybox').hover(function(){
    if($(this).children("img.magnify").size() > 0){
      $(this).children("img.magnify").first().show()
    }
    else{
      var position = $(this).position()
      $(this).append('<img class="magnify" src="/images/layout/magnify.png" alt="" width="18" height="18" />')
      $(this).children("img.magnify").first().show()
    }
  },function(){
    $(this).children("img.magnify").first().hide()
  })
  // Add Slideshow behavior to homepage image
  $('.flexslider').flexslider({
  slideshowSpeed: 5000
  });
  /* jQuery Mobile select */
  $('#nav-main ul').mobileSelect({
    autoHide: true, // Hide the ul automatically
    defaultOption: "Ga naar…", // The default select option
    deviceWidth: 480 // The select will be added for screensizes smaller than this
  });
  $('#nav-extra ul').mobileSelect({
    autoHide: true, // Hide the ul automatically
    defaultOption: "Ga naar…", // The default select option
    deviceWidth: 480 // The select will be added for screensizes smaller than this
  });
  // Validate forms
  $("#mailer").validate();
  
})

