/*!
 * Main JavaScript file
 * http://www.itecron.com
 *
 * Copyright 2011, iTecron bvba
 */
  
$(document).ready(function(){
	
	// Display of "image x of y" on image overlay
 	function formatTitle(title, currentArray, currentIndex, currentOpts) {
 	    return '<div class="fancybox-title">' + 'Afbeelding ' + (currentIndex + 1) + ' van ' + currentArray.length + '</div>';
	}
	
	// Call Fancybox with custom settings & overlay with text as defined above
	$("a.fancybox").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false,
		'titlePosition' : 	'over',
		'titleFormat'		: formatTitle
	});

});
