// JavaScript Document

function rotateEvery(sec, which)
{
	var Quotation=new Array()

	// QUOTATIONS
	
	Quotation[0] = '<h3>Dr. Jerry B. Jenkins</h3><p><img src="images/Jerry-Jenkins.jpg" alt="Dr. Jerry B. Jenkins" width="143" height="200" class="left" />Keynote speaker, has authored more than 160 books. Among these  books are the best selling Left Behind series, which have sold more than 63  million copies.</p><p><a href="authors">Read more</a></p>';
	Quotation[1] = '<h3>Andy Scheer</h3><p><img src="images/Andy_Scheer.jpg" alt="Andy Scheer" width="100" height="140" class="left" />Keynote speaker, is managing editor and a writing mentor for the  Jerry B. Jenkins Christian Writers Guild in Colorado Springs, Colorado. </p><p><a href="authors">Read more</a></p>';
	Quotation[2] = '<h3>Lois Walfrid Johnson</h3><p><img src="images/Lois-Walfrid-Johnson.jpg" alt="Lois Walfrid Johnson" width="100" height="140" class="left" />Inspirational speaker and former instructor in  fiction for Writer&rsquo;s Digest School, has authored 34 books. </p><p><a href="authors">Read more</a></p>';
	Quotation[3] = '<h3>Holly Miller</h3><p><img src="images/Holly-Miller.jpg" alt="Holly Miller" width="100" height="140" class="left" />Author or co-author of 14  fiction and nonfiction books and more than 2,000 published magazine articles, teaches  magazine writing at Anderson   University. </p><p><a href="authors">Read more</a></p>';
	Quotation[4] = '<h3>Dr. Earl Reimer</h3><p><img src="images/Reimer_Earl.jpg" alt="Dr. Earl Reimer" width="100" height="140" class="left" />Renowned Bethel   College playwright and  director since 1961, has developed the college&rsquo;s drama program into the  successful program it is today.</p><p><a href="authors">Read more</a></p>';
	Quotation[5] = '<h3>Rachael Phillips</h3><p><img src="images/Rachael_Phillps.jpg" alt="Rachael Phillips" width="100" height="140" class="left" />Adjunct writing professor at Bethel  College, has written four biographies  in the Heroes of the Faith series: <em>Frederick  Douglass, Billy Sunday, St. Augustine</em> and a collection of four mini-biographies of hymn writers, <em>Well with My Soul</em>.</p><p><a href="authors">Read more</a></p>';
	
	if(which == Quotation.length )
	{
		which = 0;
	}
	document.getElementById('authors').innerHTML = Quotation[which];
	which += 1;
	
	
	
	setTimeout('rotateEvery('+sec+', '+which+')', sec*1000);
}