var titles = new Array();
var timer;
function setupTR() {
	timer=3000;
	titles = new Array
	titles.n = 0
	titles[titles.length] = "Mojave & Ajax (Land Urchins)"
	titles[titles.length] = "Mojave & Ajax (Land Urchins)"
	titles[titles.length] = "How are you gentlemen !!"
	titles[titles.length] = "All your mealworm are belong to us"
	setTimeout("titleRotate()",timer);
}
function titleRotate() {
	// document.title = titles[ Math.round(Math.random() * (titles.length-1)) ]
	titles.n++
	document.title = titles[ titles.n % titles.length ]
	setTimeout("titleRotate()",timer)
}

window.defaultStatus="Mojave & Ajax: All Your Mealworm Are Belong To Us";

if(!NS4) setupTR();

