$(function(){
	$("#menu li:not([class~=actif]) a").hover(
		function(){
			$(this).animate({
				opacity: 1
			});
			
			$(this).parent().find("span").animate({
				opacity: 1,
				marginTop: '0'
			  }, 200);


	
		},function(){
			$(this).animate({
				opacity: 0.5
			});
			
			$(this).parent().find("span").animate({
				opacity: 0,
				marginTop: '5px'
			  }, 300);
		});
		
	//menu vidéo
		/*if($("#menu_video").length){
		var html_v_debut ='<video width="640" height="360" controls="controls"><source src="';
		var html_v_fin = '" type=\'video/mp4; codecs="avc1.42E01E, mp4a.40.2"\' />Vous n\'avez pas de navigateur moderne, veuillez le mettre à jour</video> ';

		$("#menu_video li:first-child").addClass("actif");
		$("#lecteur").html(html_v_debut+$("#menu_video li:first-child a").attr("href")+html_v_fin);
			
		$("#menu_video a").click(function(){
			if(!$(this).parent().hasClass("active")){
				url_video = $(this).attr("href");
				$("#menu_video li").removeClass("active");
				$(this).parent().addClass("active");
				$("#lecteur").html(html_v_debut+url_video+html_v_fin);
				html5media();

			}
			return false;	
		});	
		html5media();

	}*/
	
	//galeries photos
	$(".gallery a").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200,
		'overlayOpacity' : 0.9,
		'overlayColor' : "#000",
		'titleShow' : true
	});
	
	$('#affiches ul').moodular({
		'dispTimeout':4000	
	});

	
});
