$(document).ready(function(){

	$('#flash-intro').flash({swf:'/wp-content/themes/startingpoint/videos/rainbowoptics-movie-d2.swf', height: 280, width: 619 });
	
	function formatTitle(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-inside">' + title + '<br /><span class="image-counter">' + 'Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + '</span>' + '</span>';
		}
	// use formatTitle when making galleries
	$("a.gallery").fancybox({
		'titleShow'		:	true,
		'titlePosition'	:	'inside',
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'titleFormat'	:	formatTitle,
		'speedIn'		:	300, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'overlayColor'	:	'#fff'
	});

	
});