jQuery(document).ready(function() {
	
	 jQuery(".documents .document-link").hover(
	  function () {
		jQuery(this).next("div").show();
	  },
	  function () {
		jQuery(this).next("div").hide();
	  }
	);
	 
});

