<!--
// Set tickerShowSpeed (milliseconds)
var tickerShowSpeed = 5000
var Text = new Array();

Text[0] = "Site by Issei Yakamoto"; 
Text[1] = "Crazy Moose Productions"; 
Text[2] = "e-Mail: isseiyakamoto@hotmail.com"; 

// =======================================
// do not edit anything below this line
// =======================================

var t
var j = 0
var p = Text.length

runTicker();
function runTicker(){
   j = j + 1
   if (j > (p-1)) j=0
	window.status = Text[j];
   t = setTimeout('runTicker()', tickerShowSpeed)
}
//--> 

