$(document).ready(function(){
						   
	
		$(".image_news").hover(function(){

		  // grab the div's id
		  var nom = $(this).attr("id");
	
		  // hide the caption
		  $("#"+nom+" .cite_pad2").hide();
	
		  // over
		  $("#"+nom+" .cite_pad2").fadeIn("slow");
	
		  },function(){
			  
		  //out
		  var nom = $(this).attr("id");
		  $("#"+nom+" .cite_pad2").fadeOut("slow");
		
		});
		
		
});		