$(document).ready(function(){ 
	
	//menu
	$("#menu a img + img, #bigmenu a img + img").css({
	position:"absolute",
	top:"0px",
	left:"0px"
	})
	//overfade
    $("#menu a:not('.current'), #bigmenu a")
	.css({position:"relative"})
	.hover(
        function(){

            $(this).find("img").next()
			.stop(true,true)
			.fadeIn(200);
			
        }, function(){
			
            $(this).find("img").next().fadeOut(200);
			
        }
    );
	
	//overfade pour ie6
	$("a.overFade img + img").css({
	position:"absolute",
	top:"0px",
	left:"0px"
	})
	//overfade
    $("a.overFade")
	.css({position:"relative"})
	.hover(
        function(){

            $(this).find("img").next()
			.stop(true,true)
			.fadeIn(200);
			
        }, function(){
			
            $(this).find("img").next().fadeOut(200);
			
        }
    );
	
	//slideshow
	$('.pics').cycle({
	fx: 'scrollHorz',
	speed:800,
	//	easing: 'bounceout',
	next:   '#fleche_droite a', 
    prev:   '#fleche_gauche a' 
	});

  
});

