(function ($){
	$(function(event) {
		$("input.file[type=file]").each(function(e) {
			var it = $(this);
			it.after("<span><input type='button' class='submitDark' value='Îáçîð' /></span>" +
					  "<input type='text' class='input overinp' />");
			
		});
		$('.file').change(function() {
			$(this).parent(0).find('.overinp').val(this.value);
		});
	});
})(jQuery);