var myquotes = new Array()

myquotes[0]="<p>Solicit feedback  from our community, and support air power history with the Foundation's online <a href='http://www.afhistoricalfoundation.org/resources/Researchers_Corner.asp'>Researcher's Corner</a>.</p>";
//myquotes[0]="<p>Save the date: The Air Force Historical Foundation will unveil its <a href='http://www.afhistoricalfoundation.org/events/2011_Doolittle_Award.asp'>James H. &quot;Jimmy&quot; Doolittle Award<a> on June 2, 2011.</p>";
myquotes[1]="<p>Read about <a href='../aboutus/Colonel-Helen.asp'>Helen O'Day</a>, the first woman in U.S. Air Force history promoted to Colonel, who passed away last year.</p>";
//myquotes[1]="<p>Learn more about museums and other institutions <a href='../aboutus/lyon_air_museum.asp'>recommended by the Air Force Historical Foundation</a>.</p>";



function rotatequote(x)
{
	thequote = myquotes.shift(); //Pull the top one
	myquotes.push(thequote); //And add it back to the end
	
	document.getElementById('quotetext').innerHTML = thequote;
	// This rotates the quote every 45 seconds.
	// Replace 45000 with (the number of seconds you want) * 1000
	t=setTimeout("rotatequote()",4500);
	

}



// Start the first rotation.
rotatequote();


