$(document).ready(function(){
	
	$('#langue .trsp').css('opacity', 0.9)
	.bind('mouseover', function(){
		$(this).css('opacity', 1);
	})
	.bind('mouseout', function(){
		$(this).css('opacity', 0.9);
	});
});
