$(document).ready(function(){ 
	
	//menu
	$(".btna a img + img, .btnb a img + img, .btnc a img + img, .btnd a img + img").css ({
	position:"absolute",
	top:"0px",
	left:"0px"		
	})
	//overfade
    $(".btna a, .btnb a, .btnc a, .btnd a").not(".btna .current, .btnb .current, .btnc .current, .btnd .current")
	.css({position:"relative", display:"block"})
	.hover(
        function(){

            $(this).find("img").next()
			.stop(true,true)
			.fadeIn(500);
			
        }, function(){
			
            $(this).find("img").next("img").fadeOut(300);
			
        }
    );
	
	//overfade pour ie6
	$("a.overFade img + img").css({
	position:"absolute",
	top:"0px",
	left:"0px"
	
	})
	//overfade
    $("a.overFade")
	.css({position:"relative", display:"block"})
	.hover(
        function(){

            $(this).find("img").next("img")
			.stop(true,true)
			.fadeIn(500);
			
        }, function(){
			
            $(this).find("img").next("img").fadeOut(300);
			
        }
    );
	

});
