function doc_gi(){
	l_img = new Array();
	var img_ct = 1;
	for(i=1;i<img1.length;i++){
		l_img[img_ct] = new Image();
		l_img[img_ct].src = "http://img1.jeducomm.net/?i="+img1[i];
		img_ct++;
	}
	for(i=1;i<img2.length;i++){
		l_img[img_ct] = new Image();
		l_img[img_ct].src = "http://img2.jeducomm.net/?i="+img2[i];
		img_ct++;
	}
	for(i=1;i<img3.length;i++){
		l_img[img_ct] = new Image();
		l_img[img_ct].src = "http://img3.jeducomm.net/?i="+img3[i];
		img_ct++;
	}
}
function chk_arr(){
	for(i=1;i<l_img.length - 1;i++){
		if(l_img[i].complete == false){
			return false;
		}
	}
	return true;
}
var loading = "";
var chk_count = 0;
function chk_handler(){
	if(chk_arr() == true || chk_count == 10){
		gebid('load').style.display = "none";
		gebid('hud').style.display = "none";
		window.clearTimeout(loading);
	}
	chk_count++;
}
function img_chk(){
	loading = window.setInterval("chk_handler();",1000);
}
