// benodigd voor de photogallery -- start
$(document).ready(function(){					   
	if (!/android|iphone|ipod|series60|symbian|windows ce|blackberry/i.test(navigator.userAgent)) {
  jQuery(function($) {
    $("a[rel^='lightbox']").slimbox({/* Put custom options here */}, null, function(el) {
        return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
      });
    });
  }
});

$(window).load(function(){
	// de gallerijen maken
  $('.gallerywrapper').gallery({
  	per_pagina: 15,
  	per_rij: 5,
  	hoogte: 333
  });
});
// benodigd voor de photogallery -- eind
