this.photo_bg = function(){
	$(".top_menu ul li a").hoverIntent(
		function(){											  
			var id = $(this).attr("item");
			var toshow = "#photo"+" ."+id;
			$('#photo').show();
			$(toshow).fadeIn(500);
			return false;
		},
		function(){
			$('.cv').hide();
			$('.bw').hide();
			$('.fo').hide();
			$('.sc').hide();
			$('.ac').hide();
			$('#photo').hide();
			return false;
		}
	)
	/*****************/
	// A ajouter si besoin
	// du menu déroulant 
	// sur le home
	//
	menu_deroulant();
};
