$(document).ready(function(){
	
	/* Fancybox */
	$("a[rel=photo_scroll]").fancybox({
		'overlayOpacity'	: 0.8,
		'overlayColor'		: '#000',
		'titlePosition' 	: 'outside',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
	
	/* Pagination (http://th3silverlining.com/2010/04/15/pajination-a-jquery-pagination-plugin/) */
	$('#paging_container1').pajinate({
		items_per_page : 8,
		nav_label_first : 'Eerste',
		nav_label_last : 'Laatste',
		nav_label_prev : 'Vorige',
		nav_label_next : 'Volgende'
	});
	
	/* Hide for photoalbum page introtext */
	$("#hidr").click(function () {
	  $("span:last-child").hide("", function () {
		// use callee so don't have to name the function
		$(this).prev().hide("", arguments.callee); 
	  });
	});
	
	/* Show for photoalbum page introtext */
    $("#showr").click(function () {
      $("span").show();
    });
	
	/* Disable right mouse click */
	$(this).bind("contextmenu", function(e) {
		e.preventDefault();
		$.prompt('Aan de foto\'s op deze website zijn auteursrechten verbonden. <br /> <br /> Klik <a href="/auteursrechten/">hier</a> voor meer informatie.');
	});	
});
