consoleTimerStart : function(){
setInterval($this.refreshConsole(), 1000)
},
destroyConsoleTimer : function(){
clearInterval($this.refreshConsole());
$this.refreshConsole();
},
refreshConsole : function(){ //обновляет консоль
$.post(baseUrl+"getConsole",function(data){
//alert(data);
$(console).html(data).scrollTop(999999);
});
},
uploadFiles : function(){ //загрузка файлов на сервер
$(WORKER).show();
$this.consoleTimerStart();
$(formUpload).ajaxForm(function(data){
$(WORKER).hide();
$(changeImgBtn).replaceWith($(changeImgBtn).clone(true));
$this.destroyConsoleTimer();
});
},