if(window.addEventListener) {
	window.addEventListener("load", repV, false);
}
else if(window.attachEvent) {
	window.attachEvent("onload", repV);
}


function repV() {
	var lang = document.URL.split('/').pop().split('.');
	lang = lang[1];
	
	if (lang=="eng") {
		repVEng();
	} else {
		repVJa();
	}
}

function repVJa(){
	
	//if (!event) { event = window.event; }
	
	vNum=Math.floor(Math.random()*6)+1;
	//if(vNum>1)vNum=vNum+1;
	
	var linkStr = "/ja/recruit/voice_"+vNum+".ja.html";
	var imgName = "/ja/img/k_"+vNum+".jpg";
	
	ban_obj = document.getElementById('k_ban');
	ban_obj.href = linkStr;
	ban_obj.firstChild.src = imgName;
	
}

function repVEng(){
	
	//if (!event) { event = window.event; }
	
	vNum=Math.floor(Math.random()*6)+1;
	//if(vNum>1)vNum=vNum+1;
	
	var linkStr = "/eng/recruit/voice_"+vNum+".eng.html";
	var imgName = "/eng/img/k_"+vNum+".jpg";
	
	ban_obj = document.getElementById('k_ban');
	ban_obj.href = linkStr;
	ban_obj.firstChild.src = imgName;
	
}

