
$(document).ready(function(){

	$("a > img").not("#menuimages a > img").not("#repertoire_img_float a > img").not("#bt_formulaires a > img").not(".exception a > img")
	.css({opacity:"0.8"})
	
	.hover(
        function(){
           $(this).stop().animate({opacity:"1"}, 230);
        }, function(){
			$(this).stop().animate({opacity:"0.8"}, 230);
        }
    );
	
	$.smoothAnchors(700, "swing", false);

	
});
