function maisArquivo() {
	var el = 
		'<table>'+
		'<tr>'+
	        '<td class="nome_campo" height="24">Arquivo</td>'+
	        '<td><input name="imagem[]" type="file" class="formulario caixabt"/></td>'+
	    '</tr>'+
		'<tr>'+
	        '<td class="nome_campo" height="24">Descrição</td>'+
	        '<td><input name="documento[]" type="text" size="75" class="caixabt"/></td>'+
	    '</tr>'+
		'<tr>'+
	        '<td >&nbsp;</td>'+
	        '<td>&nbsp;</td>'+
	    '</tr>'+
		'</table>';
	         
	jQuery(el).insertBefore('#mais-arquivo');
}