$(document).ready(function() {
 
	$(".my_image").hover(function(){
 
	  // grab the div's id	
	  var id = $(this).attr("id");
 
	  // hide the caption	
	  $("#"+id+" .cite_pad").hide();
 
	  // over
	  //$("#"+id+" .cite_pad").slideDown("fast");
	  $("#"+id+" .cite_pad").show();
	  
	},function(){
	  //out
	  var id = $(this).attr("id");
	  //$("#"+id+" .cite_pad").slideUp("fast");
	  $("#"+id+" .cite_pad").hide();
	});
});

