$(document).ready(function(){
	
	
	$(".child_block").hover(
      function () {
			$(this).find(".child_description").slideToggle('slow');
			
      }, 
      function () {
			$(this).find(".child_description").slideToggle('slow');
      });
});
