//Javascript Document
$(function() {
	//Cacher le video Zone Créative
	$("#zonecreative").hide();
	
	//Tabs
	//$(".panes > div").css({'display':'none','position':'absolute'});
	$(".tabs").tabs("div.panes > div",{
		effect: 'fade',
		history: true
	});
	
	//Fancybox
	$("#video").click(function() {
		$.fancybox({
				'padding'			: 0,
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'	: 'none',
				'title'				: this.title,
				'width'				: 680,
				'height'				: 495,
				'href'				: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
				'type'				: 'swf',
				'swf'					: {
				'wmode'				: 'transparent',
				'allowfullscreen'	: 'true'
				}
			});
	
		return false;
	});
});

