<!--
	var seconds = 3;
	var ns6 = document.getElementById&&!document.all;
	
	var items = new Array();

items[0] = "&quot;Continuity gives us roots; change gives us branches; letting us stretch and grow and reach new height.&quot;<br />- Pauline R. Kezer";
items[1] = "&quot;Progress lies not in enhancing what is, but in advancing toward what will be.&quot;<br />- Kahil Gibran";
items[2] = "&quot;A vision is not just a picture of what could be; it is an appeal to our better selves, a call to become something more.&quot;<br />- Rosabeth Moss Kanter";
items[3] = "&quot;Change is inevitable, growth is intentional.&quot;<br />- Glenda Cloud";
items[4] = "&quot;If your Actions inspire others to dream more, learn more, do more,and become more, you are a leader.&quot;<br />- John Quincy Adams";
items[5] = "&quot;Service is the rent we pay for the privilege of living on this earth. It is not something you do in your spare time.&quot;<br />- Congresswoman Shirley Chisholm";
items[6] = "&quot;Never mistake knowledge for wisdom. One helps you make a living, the other helps you make a life.&quot;<br />- Sandra Carey";
items[7] = "&quot;The mediocre teacher tells; the good teacher explains; the superior teacher demonstrates; the great teacher inspires.&quot;<br />- American Journalist William Arthur Ward";
items[8] = "&quot;Teaching requires knowledge, and Research requires passion.<br /> Research benefits from knowledge of subjects to be taught, and Teaching benefits from the first-hand passion of Research.&quot;<br />- David J. Germano.";
items[9] = "&quot;Realize that in any class you could have a child, a young man or woman, who could do incredibly great things in the world. So teach as well as you can.&quot;<br />- President Barack Obama";

	function rotater() {
		var randomnumber = Math.floor(Math.random()*items.length);
		
		if(document.layers) {
			document.placeholderlayer.document.write(items[randomnumber]);
			document.placeholderlayer.document.close();
		}
		if(ns6)document.getElementById("quotes").innerHTML=items[randomnumber]
			if(document.all)
				quotes.innerHTML=items[randomnumber];
	
		setTimeout("rotater()",seconds*5000);
	}
	window.onload=rotater;
//-->