$(document).ready(function() {

	/* Using custom settings */
	
	$("a#inline").fancybox({
		'hideOnContentClick': true
	});

	/* Apply fancybox to multiple items */
	
	$("a.modal").fancybox({
		'transitionIn'		: 	'elastic',
		'transitionOut'		: 	'elastic',
		'easingIn'			:	'easeOutQuint',
		'easingOut'			:	'easeOutQuint',
		'speedIn'			:	800, 
		'speedOut'			:	600, 
		'cyclic'			: 	true,
		'showCloseButton'	: 	false,
		'showNavArrows'		: 	false,
		'overlayColor'		: 	"#000",
		'overlayOpacity'	: 	.6, 
		'padding'			: 	0
	});
	
	$("a.video").click(function() {
		$.fancybox({
				'padding'		: 0,
				'autoScale'		: false,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic',
				'easingIn'		:	'easeOutQuint',
				'easingOut'		:	'easeOutQuint',
				'showCloseButton': 	false,
				'title'			: this.title,
				'width'			: 680,
				'overlayColor'	: "#000",
				'overlayOpacity': 0.8,
				'height'		: 495,
				'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
				'type'			: 'swf',
				'swf'			: {
						'wmode'		: 'transparent',
				'allowfullscreen'	: 'true'
				}
			});

		return false;
	});
	
	$("a.back").click(function(e){
		e.preventDefault();
		window.close();
		return false;
	})
	
	$('a.popup').popupWindow({ 
		top:50, 
		left:50,
		scrollbars: 1
	});
	
	$('.photographer-list a').click(function(){
	  this.target = "_blank";
	});
	
});
