	// BODR
	$(document).ready(function() {

		/* Create a modal box with image gallery */
		$("a[rel=fancybox_images]").fancybox({
			'titlePosition'	: 'over',
			'titleFormat'	: function(title, currentArray, currentIndex, currentOpts) {
				return '<span id="fancybox-title-over"><span>' + title + '&nbsp;<span style="float: right;">' +  (currentIndex + 1) + ' / ' + currentArray.length + '</span></span>';
			}
		});

		/* Create a modal box with iframe source */
		$('a[rel=fancybox_iframe]').each(function(){
			var w = parseInt($(this).attr('href').match(/width=[0-9]+/i)[0].replace('width=', ''));
			var h = parseInt($(this).attr('href').match(/height=[0-9]+/i)[0].replace('height=', ''));
			$(this).fancybox({
				'width'			: w,
				'height'		: h,
				'autoScale'		: false,
				'type'			: 'iframe',
				'showNavArrows'	: false,
				'titlePosition'	: 'over',
				'titleFormat'	: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">' + title + '</span>';
				}
			});
		});

		/* Create a modal box with html content */
		$("a[rel=fancybox_html]").fancybox({
			'showNavArrows'	: false
		});

	});
	// EODR


