var delay=4000 //set delay between message change (in miliseconds)
var fcontentNews=new Array()
var fcontentNotes=new Array()
var fcontentTips=new Array()
fcontentNews[0]="<a href='http://tsup.truman.edu/store/ViewBook.aspx?Book=934'><b>Forthcoming<br />October 2008</b><br /> <img class='newspic' src='http://tsup.truman.edu/includes/image.aspx?x=Item&y=934&w=100&h=-1' /><br /><span style='font-size: 80%'>The Art of Executing Well<br />Ed. Nicholas Terpstra</span></a>"
fcontentNews[1]="<a href='http://tsup.truman.edu/store/ViewBook.aspx?Book=937'><b>Forthcoming<br />January 2009</b><br /> <img class='newspic' src='http://tsup.truman.edu/includes/image.aspx?x=Item&y=937&w=100&h=-1' /><br /><span style='font-size: 80%'>Big Spring Autumn<br />Bonnie Stepenoff</span></a>"
fcontentNews[2]="<a href='http://tsup.truman.edu/store/ViewBook.aspx?Book=911'><b>Forthcoming<br />September 2008</b><br /> <img class='newspic' src='http://tsup.truman.edu/includes/image.aspx?x=Item&y=911&w=100&h=-1' /><br /><span style='font-size: 80%'>my maiden cowboy names<br />Victoria Brockmeier</span></a>"
fcontentNews[3]="<a href='http://tsup.truman.edu/store/ViewBook.aspx?Book=920'><b>Forthcoming<br />July 2008</b><br /> <img class='newspic' src='http://tsup.truman.edu/includes/image.aspx?x=Item&y=920&w=100&h=-1' /><br /><span style='font-size: 80%'>Israel and the Legacy of Harry S. Truman</span></a>"
fcontentNews[4]="<a href='http://tsup.truman.edu/store/ViewBook.aspx?Book=916'><b>New!</b><br /> <img class='newspic' src='http://tsup.truman.edu/includes/image.aspx?x=Item&y=916&w=100&h=-1' /><br /><span style='font-size: 80%'>Masculinity in the Reformation Era<br />Hendrix & Karant-Nunn</span></a>"
fcontentNews[5]="<a href='http://tsup.truman.edu/store/ViewBook.aspx?Book=910'><b>New!<br />May 2008</b><br /> <img class='newspic' src='http://tsup.truman.edu/includes/image.aspx?x=Item&y=910&w=100&h=-1' /><br /><span style='font-size: 80%'>Leonarde's Ghost<br />Edwards & Sutch</span></a>"
fcontentNews[6]="<a href='http://tsup.truman.edu/store/ViewBook.aspx?Book=903'><b>New!<br />May 2008</b><br /> <img class='newspic' src='http://tsup.truman.edu/includes/image.aspx?x=Item&y=903&w=100&h=-1' /><br /><span style='font-size: 80%'>Unbridled Cowboy<br />Joseph B. Fussell<br />Edited by E. R. Fussell</span></a>"


fcontentTips[0]="<b></b><a href=''></a><br />"


var news=0;
var notes=0;
var tips=0;
//function to change content
function changecontent() {
	if (news>=fcontentNews.length)
		news=0
	if (notes>=fcontentNotes.length)
		notes=0
	if (tips>=fcontentTips.length)
		tips=0
	var str = "";
	if (fcontentNews.length > 0)
	{
		str = str + "<div class='news'>"+fcontentNews[news]+"</div>"
	}
	if (fcontentNotes.length > 0)
	{
		str = str + "<div class='notes'>"+fcontentNotes[notes]+"</div>"
	}
	if (fcontentTips.length > 0)
	{
		str = str + "<div class='tips'>"+fcontentTips[tips]+"</div>"
	}
	document.getElementById("upcommingeventscontent").innerHTML=str;
	news++;
	notes++;
	tips++;
	window.setTimeout("changecontent()",delay)
}
window.onload=changecontent
