var i=0;
newsArray = new Array();
newsArray[i++] = "<a href=http://www.maip.com/news/index.php>Google connects with Oklahoma at MidAmerica.</a>";
newsArray[i++] = "<a href=http://www.maip.com/news/index.php>MidAmerica Industrial Park and Rogers State University establish partnership.</a>";
newsArray[i++] = "<a href=http://www.maip.com/news/index.php>Pryor Creek makes &quot;Top Two&quot; list in national cost of living annual survey.</a>";
newsArray[i++] = "<a href=http://www.maip.com/news/index.php>Pryor Creek remains in top 10 national cost of living survey...again.</a>";
newsArray[i++] = "<a href=http://www.maip.com/news/index.php>National site selection expert talks about corporate relocation needs.</a>";
//newsArray[i++] = "<a href=http://www.maip.com/news/index.php>Oklahoma's economy ranked as the nation's sixth best.</a>";
//newsArray[i++] = "<a href=http://www.maip.com/news/index.php>Oklahoma's Quality Jobs Program expanded.</a>";
//newsArray[i++] = "<a href=http://www.maip.com/news/index.php>Pryor Chemical set to open in July.</a>";
//newsArray[i++] = "<a href=http://www.maip.com/news/index.php>MidAmerica electric rates consistently in top 5 for lowest cost in region.</a>";
//newsArray[i++] = "<a href=http://www.maip.com/news/index.php>11-layer film production headed to Berry Plastics plant at MidAmerica.</a>";
//newsArray[i++] = "<a href=http://www.maip.com/news/index.php>Urgent Care to open medical clinic at MidAmerica Industrial Park.</a>";
//newsArray[i++] = "<a href=http://www.maip.com/news/index.php>Federal Tax benefits extended for MidAmerica firms.</a>";
//newsArray[i++] = "<a href=http://www.maip.com/news/index.php>GRDA, OG&E and OMPA complete acquisition of 'Redbud' power facility.</a>";
//newsArray[i++] = "<a href=http://www.maip.com/news/index.php>Tulsa Life Flight lands at MidAmerica Industrial Park.</a>";
//newsArray[i++] = "<a href=http://www.maip.com/news/index.php>Scholarships available for new Industrial Maintenance summer program.</a>";
//newsArray[i++] = "<a href=http://www.maip.com/news/index.php>OSU-Okmulgee / MidAmerica inaugurates Industrial Maintenance Technician Training Program.</a>";
//newsArray[i++] = "<a href=http://www.maip.com/news/index.php>Continuing upgrades keep American Castings as state-of-the-art foundry.</a>";
//newsArray[i++] = "<a href=http://www.maip.com/news/index.php>Pryor Creek's cost of living lowest in US.</a>";
//newsArray[i++] = "<a href=http://www.maip.com/news/index.php>MidAmerica welcomes Digi Surveillance Systems.</a>";
//newsArray[i++] = "<a href=http://www.maip.com/news/index.php>Google clicks Oklahoma for $600 million data center.</a>";
//newsArray[i++] = "<a href=http://www.maip.com/news/index.php>Pryor job fair a huge success.</a>";
//newsArray[i++] = "<a href=http://www.maip.com/news/index.php>Oklahoma's Individual Income Tax Drop!!!</a>";
//newsArray[i++] = "<a href=http://www.maip.com/news/index.php>Latest Stock Prices for MidAmerica Industries.</a>";
//newsArray[i++] = "<a href=http://www.maip.com/news/index.php>MidAmerica firms qualify for special Federal Tax benefits.</a>";

z=0;
function rotateNewsText() {

	if(z<newsArray.length) {
		document.getElementById("headlineBanner").innerHTML = newsArray[z];
		time2=setTimeout('rotateNewsText()',6000);
		z++;
	} else {
		z=0;
		rotateNewsText();
	}

}
