$(document).ready(function() {
	var c = 1;
	
	$(".adicionar_imagem").click(function() {
		var i = $(this).parent();
		
		i.after(i.next().clone(true));
		i.next().find("input").val("");
		
		c++;
		
		i.next().find("span").text(c);
		
		if (c == 5) {
			$(this).hide();
		}
		
		return false;
	});
});