$(document).ready(function(){ 
    
    var animeSpeed = 200;
	

    $("#menu a:not('a.current')")
	.css({color:"#db8026"})
	.hover(
        function(){
			
            $(this).stop(true,true).animate({color:"#efae6e"}, animeSpeed);
			
        }, function(){
			
            $(this).animate({color:"#db8026"}, animeSpeed);
			
        }
    );
	
	
	
	
	//pour ie6
	$("a.overFade img + img").css({
	position:"absolute",
	top:"0px",
	left:"0px"
	})
	
    $("a.overFade")
	.css({position:"relative"})
	.hover(
        function(){

            $(this).find("img").next("img")
			.stop(true,true)
			.fadeIn(animeSpeed);
			
        }, function(){

            $(this).find("img").next("img").fadeOut(animeSpeed);
			
        }
    );
	
  $.smoothAnchors(700, "swing", false);
  
});

Shadowbox.init({
language: "fr",
players: ["img", "iframe"] 
});
