var num = 1;
var text = '<tr id="photo-line-{id}"><td><input type="file" name="{id}" id="photo-{id}" /></td><td><a href="javascript:void{0}" class="photo-remove" onClick="photo_remove(\'photo-remove-{id}\')" id="photo-remove-{id}">Excluir</a></td></tr>';
$(function(){
  $('.add-bt')
    .click(function(){
        num++;
        var textready = text.replace(/{id}/g, num);
        $("#table-photo").append(textready);        
    })    
});

function photo_remove (id){
    var id = $("#" + id).attr("id");
    var num = id.replace("photo-remove-", "");
    $("#photo-line-" + num).remove();    
}

$(window).load(function () {               
      $(".flash_notice").fadeOut(5000, function () {          
          $(".flash_notice").remove();
      });    
});

