var Clients = new Array;
//Customers list begin
Clients[1] = "1";

Clients[2] = "4";

Clients[3] = "6";

Clients[4] = "7";

Clients[5] = "Great-Pig__";

Clients[6] = "__________________________________";

Clients[7] = "client2_03";

Clients[8] = "client3_03";

Clients[9] = "client5_03";

Clients[10] = "customer";

Clients[11] = "customer1";

Clients[12] = "customer11";

Clients[13] = "customer1110000";

Clients[14] = "customer123";

Clients[15] = "customer1_1";

Clients[16] = "customer2";

Clients[17] = "customer21";

Clients[18] = "customer3";

Clients[19] = "customer4";

Clients[20] = "customer555";

Clients[21] = "customer6";

Clients[22] = "customer7";

Clients[23] = "customer8";

Clients[24] = "customer_1";

Clients[25] = "z12customer2";

Clients[26] = "z13";

Clients[27] = "z13customer1";

Clients[28] = "z2";

Clients[29] = "z222";

Clients[30] = "z778";

Clients[31] = "z87";

Clients[32] = "zcustomer15";
//Customers list end
var ClientsQty = Clients.length - 1;
var ClientNum = Math.floor(Math.pow(Math.random(), 1/1.8)*ClientsQty)+1;
if (Clients[ClientNum]) {
	var container = document.getElementById("header");
	var cdiv = document.createElement("div");
	cdiv.id = "our_clients";
	var div = document.createElement("div");
	var img = document.createElement("img");
	img.setAttribute("src", "/_IMG/!customers/" + Clients[ClientNum] + ".jpg");
	img.setAttribute("alt", "Наши клиенты");
	div.className = "client_content";
	div.appendChild(img);
	cdiv.appendChild(div);
	var oText = document.createTextNode("Как сюда попасть?");
	var oRef = document.createElement("a");
	oRef.setAttribute("href", "/customer/");
	oRef.appendChild(oText);
	cdiv.appendChild(oRef);
	container.appendChild(cdiv);
}

