$(document).ready(function() {
$(".more_info").hide();
$(".show_more").click(function(){
  $(this).prev(".more_info").toggle(500);
  $(this).fadeOut();
});
/*
$(".show_more").click(function () {
  $(this).prev(".more_info").toggle(500);
  $(this).html("");
    }, function () {
  $(this).prev(".more_info").toggle(500);
  $(this).html("");
});
*/
});

