$(document).ready(function(){
  
  $('#badge h4').hover(
  	function(){
  		$(this).parent().children('div').fadeIn();
  	},
  	function(){
  		$(this).parent().children('div').fadeOut();
  	}
  );
  
});
