//DD_belatedPNG.fix('#tooltip');

$(document).ready(function(){
						   
	// fadeIn/fadeOut du footer
	var opacity_on = 1;
	var opacity_out = 0.6;
	
	$("#footer_menu>ul>li")
	.css("opacity", opacity_out)
	.bind("mouseover", function(){
		$(this).stop();
		$(this).fadeTo("fast", opacity_on);
	})
	.bind("mouseout", function(){
		$(this).stop();
		$(this).fadeTo("slow", opacity_out);
	});
	

});

