



//
//　乱数発生
//

function unixOrnot() {
	if (navigator.appVersion.lastIndexOf('Unix') != 1)
	return true
	else
	return false;
}
function randomNum() {
	if (unixOrnot()) {
	num = Math.random()
	}
	else {
	num = Math.abs(Math.sin(Date.getTime()));
	}
	return num;
}


//
//　ページ上部の画像をランダムに表示
//
function TopImgChange() {
	var nc;
	randomNum();
	nc = Math.floor( num * 3);
	if ( nc == 1 ) {
		document.write("<img src=\"img/ep_hed01.gif\" width=\"421\" height=\"70\" name=\"topimage01\" alt=\"アーネストプレイスは、お客様と共に穏やかな明日を創り続けます\">");
	} else if ( nc == 2 ) {
		document.write("<img src=\"img/ep_hed02.gif\" width=\"421\" height=\"70\" name=\"topimage01\" alt=\"アーネストプレイスは、お客様と共に見えないモノに価値を創り続けます\">");
	} else {
		document.write("<img src=\"img/ep_hed03.gif\" width=\"421\" height=\"70\" name=\"topimage01\" alt=\"アーネストプレイスは、お客様と共に輝く笑顔を創り続けます\">");
	}
}




