$(document).ready(function(){

	//pour ie6
	$(".overFade img + img, #menuPrinc img + img").css({
	position:"absolute",
	top:"0px",
	left:"0px"
	})
	
    $(".overFade, #menuPrinc a").not("#menuPrinc a.current")
	.hover(
        function(){
            $(this).find("img").next("img")
			.fadeIn(300);
			
        }, function(){
            $(this).find("img").next("img").css({display:"none"});
        }
    );
	
	
	//GALLERY
	$(".smallGallery img")
	.hover(function(){
		$(this).stop().animate({opacity:"0.7"}, 200);
	}, function() {
		$(this).stop().animate({opacity:"1"}, 200);
	});
	
	//ANIMATION FLECHE
	$(".animFleche, .liens a, .liensCont ul a")
	.css({backgroundPosition: "0px 3px"})
	.hover(function(){
		$(this).stop().animate({backgroundPosition: "2px 3px"}, 200);
	}, function() {
		$(this).stop().animate({backgroundPosition: "0px 3px"}, 200);
	});
	
	$(".liensRapides li")
	.css({backgroundPosition: "0px 6px"})
	.hover(function(){
		$(this).stop().animate({backgroundPosition: "2px 6px"}, 200);
	}, function() {
		$(this).stop().animate({backgroundPosition: "0px 6px"}, 200);
	});
	
	
	//SMOOTHANCHOR
	//$.smoothAnchors(700, "swing", false);

});


