$(document).ready(function(){

/***************************************************************************************
	Fancy
***************************************************************************************/

	$("a.iframe").fancybox({
		'zoomSpeedIn': 300,
		'zoomSpeedOut': 300,
		'overlayShow': true,
		'overlayOpacity': .8,
		'frameHeight': 710,
		'frameWidth': 500
	});

	$(".titre-extraits").fancybox({
		'zoomSpeedIn': 300,
		'zoomSpeedOut': 300,
		'overlayShow': true,
		'overlayOpacity': .8,
		'frameHeight': 270,
		'frameWidth': 320
	});
	
	$("a#inline").fancybox({ 
		'hideOnContentClick': true,
		'frameHeight': 200,
		'frameWidth': 400
	}); 

	$("a[href*=.mov]").click(function(){
		window.open(this.href);
		return false;
	});
});