function maisAnexo() {
	var el = 
	'<tr>'+
		'<td style="padding:3px" width="10%"><strong>Inserir Anexo:</strong></td>'+
		'<td style="padding:3px" width="90%"><input name="arquivo[]" type="file" class="form" style="height:25px;" /></td>'+
	'</tr>'+
	'<tr>'+
		'<td style="padding:3px"><strong>Descri&ccedil;&atilde;o:</strong></td>'+
		'<td style="padding:3px"><input type="text" name="descricao[]" style="width:100%" class="form" /></td>'+
	'</tr>'+
	'<tr>'+
		'<td style="padding:3px" colspan="2" height="10"></td>'+
	'</tr>';
	         
	jQuery(el).insertBefore('#mais-anexo');
}

