/*
	13歳のハローワーク公式サイト
	typebanner.js
*/
var typebannerCnt = 8;											// 画像数
var typebannerRnd = Math.floor(Math.random()*typebannerCnt);	// 0～(画像数-1)の乱数を求める

function typebannerGetMyImageFile()
{
	typebannerRnd++;
	if (typebannerCnt <= typebannerRnd) {
		typebannerRnd = 0;
	}
	return "img/r/type_banner" + (typebannerRnd+1) + ".gif";
}
function typebannerWriteMyImage()
{
	document.write(
			"<img name='TYPEBANNER_IMG' src='" + typebannerGetMyImageFile() + "' width='201' height='85' alt='思い出からみるタイプ診断'>"
		);
}
function typebannerChgMyImage()
{
	document.images["TYPEBANNER_IMG"].src = typebannerGetMyImageFile();
	setTimeout("typebannerChgMyImage()", 2500);
}

typebannerWriteMyImage();
setTimeout("typebannerChgMyImage()", 2500);

