$(document).ready(function() {

	/* This is basic - uses default settings */
	
	$("a#single_image").fancybox();
	
	/* Using custom settings */
	
	$("a#inline").fancybox({
		'hideOnContentClick': true
	});

	/* Apply fancybox to multiple items */
	
	$("a.group").fancybox({
		'transitionIn'	:	'none',
		'transitionOut'	:	'none',
		'titlePosition' :	'over',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'overlayOpacity':	0.6,
		'overlayColor'	:	'#000',
		'hideOnContentClick': true,
		'titleFormat'	:	function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}

	});
	
	$("a.fb-movie").fancybox({
	    'padding'           : 2,
		'width'				: 740,
		'height'			: 457,
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'fade',
		'type'				: 'iframe',
		'overlayShow'	: true,
		'overlayOpacity'	: 0.6,
		'overlayColor'	: '#000'
	});
	
	$("a.youtube-video").click(function() {
	$.fancybox({
		'padding'		: 0,
		'autoScale'		: false,
		'transitionIn'	: 'none',
		'transitionOut'	: 'fade',
		'title'			: this.title,
		'width'			: 680,
		'height'		: 495,
		'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
		'type'			: 'swf',
		'overlayShow'	: true,
		'overlayOpacity'	: 0.6,
		'overlayColor'	: '#000',
		'swf'			: {
		'wmode'			: 'transparent',
		'allowfullscreen'	: 'true'
		}
	});
	 	return false;
});
	
});

