<!--
function chg(me,size){
	try{
		for(var i = 0 ; i < size ; i++){
			document.getElementById("chg_div" + i).style.display = "none";
			document.getElementById("chg_a" + i).className = "r_2";
		}
		document.getElementById("chg_div" + me).style.display = "block";
		document.getElementById("chg_a" + me).className = "r_1";
	}catch(e){}
}
function startShow(){
	try{
		if(flag>=5)	flag = 0;
		chg_show(flag,5);
		flag++;
		time = window.setTimeout("startShow()",3000);
	}catch(e){}
}
function chg_show(me,size){
	try{
		for(var i = 0 ; i < size ; i++){
			document.getElementById("select_img" + i).className = "select_img_2";
		}
		document.getElementById("select_img" + me).className = "select_img_1";
		document.getElementById("show_img").src = myimages[me].src;
		document.getElementById("show_url").href = myurls[me];
		document.getElementById("show_url").target = "_blank";
		document.getElementById("show_url").title = mytitles[me];
		document.getElementById("show_arrow").style.paddingTop = 13+(36+3*2)*me;
		flag = me;
		stopShow();
	}catch(e){}
}
try{
	window.onload = startShow;
}catch(e){}
//-->