$(document).ready(function(){
	var ajax_options = {
		complete:function(xhr) {
			var json = $.parseJSON(xhr.responseText);
			if (json.res == 'ok'){
				alert('Файл загружен');
				
				$('#company-attachfile-form>.attach_files').append('\
					<div class="attach_file" id="file'+json.id+'">\n\
						<a target="_blank" style=\'background:url("/images/'+json.bagr+'.jpg") no-repeat left;\' href="'+json.file+'">'+json.original_name+'</a>\
						<img src="/images/remove_icon.png" alt="" onclick="if(confirm(\'Вы действительно хотите удалить этот файл?\')){$.get(\''+json.delete_url+'\');$(\'#file'+json.id+'\').remove();}" />\n\
					</div>\
			');

			}else{
				var errors = '';
				for (err in json.errors) {
					errors += json.errors[err][0]+'\n';
				}
				alert('Ошибка загрузки файла:\n'+errors);
			}
			$('#company-attachfile-form').replaceWith($('#company-attachfile-form').parent().html());
			$('#bar').width('0%');
			$('#percent').html('0%');
			$('#company-attachfile-form').ajaxForm(ajax_options);
		}
	};
	$('#company-attachfile-form').ajaxForm(ajax_options);
	$('#MailAttachment_file').live('change', function(){
		$(this).closest('form').submit();
	});
});