$(document).ready(function(){	

	$("a.portfolio").fancybox({
		'overlayColor' 		: '#000',
		'titlePosition' : 'inside',
		'titleFormat'			: formatTitle,
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200 
	});
	
	function formatTitle(title, currentArray, currentIndex, currentOpts) {
    return '<div id="fancybox-title">' + (title && title.length ? '<b>' + title + '</b>' : '' ) + ' <br />' + (currentIndex + 1) + ' of ' + currentArray.length + '</div>';
	}
	

$("a.fancybox").fancybox({
		'overlayColor' 	: '#000',
		'titlePosition' : 'inside',
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'				:	600, 
		'speedOut'			:	200 
	});



}); // end document ready




