$(document).ready(function(){		
  $(".box a").each(function (i) {
    var heden = $(this).find("img").attr("alt");
    $(this).append("<div>"+heden+"</div>");
    $(this).find("img").removeAttr("alt");
  });
});
