// JavaScript Document
$(document).ready(function() {

	/* Articles de presse */
	$("a.dl").fancybox({
		'autoScale': false,
		'padding': 10,
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
	    'overlayShow': true,
		'overlayColor': '#fff',
    	'overlayOpacity': 0.5,
	    'hideOnContentClick': false,
    	'centerOnScroll': false
	});
	
	$("a.iframe").fancybox({
		'width': 500,
		'height': 500,
		'padding': 0,
		'scrolling': 'no',
		'overlayColor': '#fff'
						   });

	/* Galerie photo(s) */
	
	$("a.group").fancybox({
		'imageScale': false,
		'autoScale': false,
		'padding': 10,
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
	    'overlayShow': true,
		'overlayColor': '#fff',
    	'overlayOpacity': 0.5,
	    'hideOnContentClick': false,
    	'centerOnScroll': false
	});
	
	/* On parle de votre ADL */
	$("a.adl").fancybox({
		'autoScale': false,
		'padding': 10,
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
	    'overlayShow': true,
		'overlayColor': '#fff',
    	'overlayOpacity': 0.5,
	    'hideOnContentClick': false,
    	'centerOnScroll': false
	});
	
	// Vidéo ADL
	$(".fancyVideo").click(function() {
		$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'			: 393,
			'height'		: 202,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			'wmode'				: 'transparent',
			'allowfullscreen'	: 'true'
			}
		});

		return false;
	});
	
	$("#vimeoWB").click(function() {
		$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'			: 549,
			'height'		: 309,
			'href'			: this.href.replace(new RegExp("([0-9])","i"),'moogaloop.swf?clip_id=$1'),
			'type'			: 'swf'
		});

		return false;
	});
	
});
