
/*******************/
/*   GESTION DE L'aFFICHAGE DE PRE-HOME en cookie*/
/*******************/

jQuery(document).ready(function(){
	
	
	$(function(){ 
		$("#hidden_link").each(function() {
			var cookHome = $.cookie("CVH2011home");
			if (cookHome != 1)
			{	
				$(this).fancybox({
				'speedIn'		:	500, 
				'speedOut'		:	300, 
				'hideOnContentClick'	: true,
				'overlayOpacity'	:	0.8
				}).trigger('click');
				$.cookie("CVH2011home", "1");
			}
		});
	});
	
	
	$("a.fancy").fancybox();
	

	
	$("#menu-item-1575").click(function() {
	$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'		: 540,
			'height'		: 303,
			'href'		: '/media/video-cvh-recadree.swf',
			'type'			: 'swf',
			'swf'			: {
			   	 'wmode'		: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});

	return false;
});
	
	$(function(){
        $("div.diapo-flash").carousel({
        'loop': true,
        'effect': "fade",
        'autoSlide': true,
        'autoSlideInterval': 4200,
        'animSpeed': "slow",        
        });
    });
	
});




