function change_client(){
	var obr_cl = new function (){
		this.run = function (){
				var elem = document.getElementById("rand_client");
				elem.innerHTML = this.responseText;
				setTimeout('change_client()',5000);
		};
	};
	sendRequest('','http://www.gifmarket.ru/92/93',obr_cl);
}

function change_work(){
	var obr = new function (){
		this.run = function (){
				var elem = document.getElementById("last_work");
				elem.innerHTML = this.responseText + '<div id="work_man"><img src="assets/images/system/shap_work_man.png" alt="" /></div>';
				setTimeout('change_work()',8000);
		};
	};
	sendRequest('','http://www.gifmarket.ru/92/258',obr);
}

window.onload = function (){
	change_client();
	change_work();
}
