jQuery(document).ready(function() {

	/*
	*   Examples - images
	*/


	$("a.iframe").fancybox({
		'autoScale'         : false,
		'width'				: 755,
		'height'			: 695,
		'titlePosition' 	: 'over',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over">' +  (currentIndex + 1) + '/' + currentArray.length + '</span>';
		}
	});
});


