// JavaScript Document

$(document).ready(function() {
  $(".article").each(function() {
    var lightboxImages = $(".lightbox", this);
    lightboxImages.lightBox().not(":first").hide();
    
    var n = lightboxImages.size();
    if(n > 1) {
      var html = "<div style='padding: 5px 9px ;margin-top: -6px; z-index: 100; background: #f5f5f5'><div style='float:left'>Bekijk alle afbeeldingen</div>"+
      "<div style='float:right'>1/"+n+"</div><div class='floatfix'</div></div>"
      lightboxImages.filter(":first").append(html);
    }
    else {
      $("div.article_images div.shadow_bottom").css("margin-top", "-5px");
    }
  });
});

var RecaptchaOptions = {
   theme : 'clean'
};