
function random_image(){

var imgnum = getCookie("Imgnum");

var imgMax = 4;

do{
	var imgRandom = Math.floor(Math.random() * imgMax);
}while(imgRandom == imgnum)

if(imgRandom == 0) document.write('<img src="images/main_image02.jpg" width="750" height="196" alt="24時間、365日アウトソーシングのクリアス">');
else if(imgRandom == 1) document.write('<img src="images/main_image01.jpg" width="750" height="196" alt="内装、建築からオフィスワークまでマンパワーのクリアス">');
else if(imgRandom == 2) document.write('<img src="images/main_image03.jpg" width="750" height="196" alt="安心サポート体制アウトソーシングのクリアス">');
else if(imgRandom == 3) document.write('<img src="images/main_image04.jpg" width="750" height="196" alt="クリアスはコミュニケーションを大切にしています">');

setCookie("Imgnum", imgRandom);

}

function getCookie(key,  tmp1, tmp2, xx1, xx2, xx3) {
    tmp1 = " " + document.cookie + ";";
    xx1 = xx2 = 0;
    len = tmp1.length;
    while (xx1 < len) {
        xx2 = tmp1.indexOf(";", xx1);
        tmp2 = tmp1.substring(xx1 + 1, xx2);
        xx3 = tmp2.indexOf("=");
        if (tmp2.substring(0, xx3) == key) {
            return(unescape(tmp2.substring(xx3 + 1, xx2 - xx1 - 1)));
        }
        xx1 = xx2 + 1;
    }
    return("");
}
function setCookie(key, val, tmp) {
    tmp = key + "=" + escape(val) + "; ";
    // tmp += "path=" + location.pathname + "; ";
    tmp += "expires=Tue, 31-Dec-2030 23:59:59; ";
    document.cookie = tmp;
}

