// JavaScript Document
<!--
var rX= {
	init:function(o,t,s) {rX.obj=o;rX.rT=t;rX.sT=(s)?s:"";},
	addText: function(t) {rX.txtList.push(t);},
	showText: function() {
		if (rX.rT==0){var j=parseInt(Math.random()*rX.txtList.length);
		j=(isNaN(j))?0:j;}else{var oneDay=60*60*24*1000, d=new Date();
		jk=d.getTimezoneOffset()*60*1000;
		j=(parseInt((d.getTime()-jk)/oneDay))%rX.txtList.length;}
		d=document; newTxt=d.createElement("span");
		if (rX.sT) { newTxt.setAttribute("class", rX.sT);
		newTxt.setAttribute("className", rX.sT);}
		newTxt.innerHTML=unescape(rX.txtList[j])
		tO=d.getElementById(rX.obj); if (tO) {tO.appendChild(newTxt);}},
	addEvent: function(o,evt, fn) {
		if (o.addEventListener) {o.addEventListener(evt, fn, false);
		} else if (o.attachEvent) {o.attachEvent('on'+evt, fn);
		} else {o['on'+evt]=fn;}},
	txtList:[], obj:"", rT:0,sT:""
}
rX.init("dynamicText",0);
rX.addText("Bioscience%20employment%20in%20the%20Flagstaff%20metropolitan%20area%20grew%20three%20times%20faster%20than%20it%20did%20in%20the%20nation%20between%202001%20and%202005.");
rX.addText("Flagstaff%20is%20almost%20twice%20as%20specialized%20in%20biosciences%20in%20the%20nation.%0D");
rX.addText("Flagstaff%20is%20ten%20times%20more%20specialized%20in%20medical%20device%20manufacturing%20than%20the%20nation.%0D");
rX.addText("Flagstaff%20has%20one%20of%20the%20highest%20employment%20per-capita%20rates%20in%20medical%20device%20manufacture%20in%20the%20nation.%0D");
rX.addText("Flagstaff%20is%20a%20city%20with%20reportedly%20more%20astronomers%20per%20capita%20than%20any%20other%20in%20the%20country.%20%0D");
rX.addEvent(window,'load',rX.showText);
//--!>
