document.execCommand("BackgroundImageCache", false, true);

var rollText_k=6;
var rollText_i=1;
				//setFocus1(0);
var rollText_tt=setInterval("rollText(1)",3000);
function rollText(a){
	clearInterval(rollText_tt);
	rollText_tt=setInterval("rollText(1)",3000);
	rollText_i+=a;
	if (rollText_i>rollText_k){rollText_i=1;}
	if (rollText_i==0){rollText_i=rollText_k;}
	for (var j=1; j<=rollText_k; j++){
		document.getElementById("rollTextMenu"+j).style.display="none";
	}
	document.getElementById("rollTextMenu"+rollText_i).style.display="block";
	document.getElementById("pageShow").innerHTML = rollText_i+"/"+rollText_k;
} 
