var rndSubTxt=new Array();

rndSubTxt[0] = "Meet our President, Don Dalton. Don is an internationally recognized assistive technology expert. Don is also a quadriplegic as a result of a swimming accident in 1969."
rndSubTxt[1] = "Most recently, Don Dalton has been asked to travel to China to train the newly forming National Rehabilitation System\'s Medical Professionals on assistive / adaptive technologies. "
rndSubTxt[2] = "Don Dalton has been featured on the front page of the Wall Street Journal in a 4000 word article about him and his assistive technology company."
rndSubTxt[3] = "Don Daltons\' company won the 1995 Blue-chip Enterprise Initiative Award. Stories about him have appeared on NBC, CBS, CNN, Fox, and USA networks. He has also been featured in &quot;Wired&quot; magazine."
rndSubTxt[4] = "Don Dalton says that his job will be done when all with disabilities are &quot;Whistling While They Work&quot; through the implementation of assistive technology that will help them to overcome their disability and level the playing field."

callSubText = function() {

	Timer = new Date();
	var intTime = Timer.getUTCSeconds();
	if (intTime > 9) {
		strText = String(intTime).charAt(1);
		//document.write(strText);
	} else {
		strText = String(intTime);
		//document.write(strText);
	}
	if (strText <= 1) {
		document.write(rndSubTxt[0]);
	}  else if (strText <= 3) {
		document.write(rndSubTxt[1]);
	} else if (strText <= 5) {
		document.write(rndSubTxt[2]);
	} else if (strText <= 7) {
		document.write(rndSubTxt[3]);
	} else if (strText <= 9) {
		document.write(rndSubTxt[4]);
	} else {
		document.write(rndSubTxt[0]);
	}

}