var count = 1;
$(function(){
	$('p#add_field').click(function(){
		count += 1;
		$('#kep_mezo').append(
				'<strong>Kép #' + count + '</strong><br />' 
				+ '<input id="kep_' + count + '" size="38" name="adpost_pic[]' + '" type="file" /><br />' );
	
	});
});

$(function(){
	$(".error").show(500);
});

