$(document).ready(function(){


//menu
	$("a.rollover img + img").css ({
	position:"absolute",
	top:"0px",
	left:"0px"		
	})
	//overfade
    $("a.rollover").not(".rollover .current")
	.css({position:"relative", display:"block"})
	.hover(
        function(){

            $(this).find("img").next()
			.stop(true,true)
			.fadeIn(200);
			
        }, function(){
			
            $(this).find("img").next("img").fadeOut(200);
			
        }
    );
	
	//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(450);
			
        }, function(){
			
            $(this).find("img").next("img").fadeOut(600);
			
        }
    );



	$('#anim').cycle({
		fx: 'fade',
		speed:800,
		random:true
	});
	//$.smoothAnchors(700, "swing", false);

});
