var txt = new Array(4);
var rnum=Math.floor(Math.random()*5);
if(rnum>0)rnum--;
txt[0] = "Fast turnaround times";
txt[1] = "No slab damage";
txt[2] = "Reasonable prices";
txt[3] = "What you should expect from a grading company";
var inc = rnum;
var sinc = 3;
var killSync = 0;
function rotateText(){
	document.getElementById('PageTitleText').innerHTML = txt[inc];
	inc++;
	if(inc>=4)inc=0;
	textRotate();
}
function textRotate(){
	var syncVal = sinc * 1000;
	if(inc==0&&sinc==10){
		killSync = 1;
	}
	if(killSync==0){
		setTimeout("rotateText();",syncVal);
	}
	if(inc==0&&sinc<10){
		if(sinc==3){
			sinc=6;
		}else{
			sinc=10;
		}
	}
}
function swapBullet(style,elem){
	if(style==1){
		elem.src='/pgx/images/icon_wolverine.gif';		
	}else{
		elem.src='/pgx/images/icon_spidey.gif';
	}
}
function Menu(who){
	who = document.getElementById(who);
	if(who.style.visibility=='hidden'){
		who.style.visibility='visible';
	}else{
		who.style.visibility='hidden';
	}
}
