var menu_en_cours ;
$(function() {
	// Les jolies fancy box :) Merci à leur créateur !
	if ($('.fancy').length >= 1)
	{
		$('.fancy').fancybox({
			'zoomSpeedIn': 800,
			'zoomSpeedOut': 800,
			'overlayShow': false
		});
	}
	if ($('.cycle').length >= 1)
	{
		$('.cycle').innerfade({animationtype: 'fade', speed: 1000, timeout: 4000, type: 'sequence', containerheight: '290px' });
	}
	$(".navigation_noir").hover(function (){
		$(this).parent().css('background-color','#42b0d9');
	})
	$(".navigation_noir").mouseleave(function (){
		$(this).parent().css('background-color','#786748');
	})
	$("ul.menu_dyn").superfish({
		autoArrows:    false,
        animation: {height:'show'},   // slide-down effect without fade-in
        delay:     600               // 1.2 second delay on mouseout
    });
    $("input[type=file]").filestyle({
		image: "squelettes/images/parcourir.gif",
		imageheight : 21,
		imagewidth : 72,
		width : 150
	});

});