// page est prete
   $(document).ready(function(){
     //$("#contenu-princ-bas li").hide();
	 
	 $("#contenu-princ-bas li").hover(
			 function(){
				$(this).fadeOut(50);
				$(this).fadeIn(300);
			 }
		 );
		 
		 $("#contenu-princ-liens a").hover(
			 function(){
				$(this).fadeOut(50);
				$(this).fadeIn(300);
			 }
		 );
		
			$(".tailleCV a:first").hover(
			 function(){
				$(this).fadeOut(50);
				$(this).fadeIn(300);
			 }
		 );
		$("#pageContact a").hover(
			 function(){
				$(this).fadeOut(50);
				$(this).fadeIn(300);
			 }
		 );
		 
		 $("#pageRea a").hover(
			 function(){
				$(this).fadeOut(50);
				$(this).fadeIn(300);
			 }
		 );
		 
		 		 $("#contenu-princ-liens-page a").hover(
			 function(){
				$(this).fadeOut(50);
				$(this).fadeIn(300);
			 }
		 );
		
   });

   
// Lien externe valide !
function lien(monLien) {
	window.open(monLien, '_blank');
	
}