 $(document).ready(function(){
   $("#en").bind("mouseenter", function(e){
       $(this).fadeOut("normal", function(){
			$("#fr").fadeIn("fast");
			$("#fr").bind("mouseleave", function(){
				$(this).fadeOut("normal", function(){
					$("#en").fadeIn("fast");
				});
			});
			}
       	);
    });
 });
