var fancyboxDefaults = {
	centerOnScroll: true,
	overlayColor: '#000',
	transitionIn: 'elastic',
	transitionOut: 'elastic',
	easingIn: 'easeOutBack',
	easingOut: 'easeInBack'
};

$(function() {
	$('a[href$=".jpg"],a[href$=".png"],a[href$=".gif"]').fancybox(fancyboxDefaults);
	$('.galleryLink').click(function(e){
		e.preventDefault();
		$(this).parents('.galleryItem').next('.detailsGallery').find('a:first').click();
	});
	if($('#galleries').size() > 0){
		$('.arrow:last').append($('#galleries'));
	}

	$('a.video').click(function(event) {
		event.preventDefault();
		var settings = $.extend(true, {}, fancyboxDefaults, {
			autoScale: false,
			padding: 2,
			width: 640,
			height: 385,
			orig: $(this),
			href: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/') + '&fs=1&autoplay=1&rel=0',
			type: 'swf',
			swf: {
				wmode: 'opaque',
				allowfullscreen: 'true'
			}
		});
		$.fancybox(settings);
	});

});

