$(document).ready(function() {
	
	$("a[rel=lightbox]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			//return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
			return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' of (' + currentArray.length + ') - Copyright &copy; 2011 Cardinal Builders</span>';
		}
	});

	$("a[rel=video]").fancybox({
		'width'				: 740,
		'height'			: 450,
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
			
	$("a[rel=specials]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none'
	});
	
});
