$(document).ready(function() {
	$("#menu").find("li[class!=active]").hover(function() {
		$(this).stop(true,true).animate({bottom: "5px"},200);
	}, function(){
		$(this).stop(true,false).animate({bottom: 0},500);
	});
	$("li.active").css("bottom","5px");
	pngFix("#entete");
	pngFix("#entete .wrap");
	pngFix("#menu img");
	pngFix(".bg-frame img");
	pngFix("#pied");
	pngFix(".sig img");
	pngFix(".copyright img");
});
