

var quotation = new Array()
	var quotation = [
	"<p>******* American Intercontinental University Online (AIU) *******<br/>847.851.5295<br/><a href=\"http://www.aiuonline.edu\">www.aiuonline.edu</a><br/></p>",
	"<p>******* American School *******<br/>708.418.2800<br/><a href=\"http://www.americanschool.org\">www.americanschool.org</a><br/></p>",	
	"<p>******* Arizona Board of Regents *******<br/></p>",
	"<p>******* Ball State University ******* <br/>765.285.9042<br/><a href=\"http://www.bsu.edu/distance\">www.bsu.edu/distance</a><br/></p>",
	"<p>******* Berkeley College *******<br/>800.446.5400<br/><a href=\"http://www.berkeleycollege.edu/online\">www.berkeleycollege.edu/online</a><br/></p>",
	"<p>******* California University of Pennsylvania *******<br/>724.938.1675<br/><a href=\"http://www.cup.edu\">www.cup.edu</a><br/></p>",
	"<p>******* Cambridge College *******<br/>800.877.4723<br/><a href=\"http://www.cambridgecollege.edu\">www.cambridgecollege.edu</a><br/></p>",
	"<p>******* DePaul University *******<br/>School for New Learning, Center for Distance Education<br/>866.765.3678 | 866.SNL.FORU<br/><a href=\"http://www.snlonline.net\">www.snlonline.net</a><br/></p>",
	"<p>******* DePaul University *******<br/>School of Computer Science, Telecommunications and Information Systems<br/>312.362.5286<br/><a href=\"http://dlweb.cti.depaul.edu\">dlweb.cti.depaul.edu</a><br/></p>",
	"<p>******* Digital Learning Network *******<br/>864.242.9694<br/><a href=\"http://www.dlnvcr.com\">www.dlnvcr.com</a><br/></p>",
	"<p>******* Drake University *******<br/>515.271.2182<br/><a href=\"http://www.drake.edu/edex\">www.drake.edu/edex</a><br/></p>",
	"<p>******* George Washington University *******<br/>202.994.1701<br/><a href=\"http://www.gwu.edu/~etl\">www.gwu.edu/~etl</a><br/></p>",
	"<p>******* Grantham University *******<br/>800.955.2527<br/><a href=\"http://www.grantham.edu\">www.grantham.edu</a><br/></p>",
	"<p>******* Missouri Southern State University *******<br/>877-837-8527<br/><a href=\"http://www.mssu.edu/\">http://www.mssu.edu/</a><br/></p>",
	"<p>******* New Mexico State University - School of Nursing *******<br/>575.646.3812<br/><a href=\"http://www.nmsu.edu/~nursing/\">www.nmsu.edu/~nursing/</a><br/></p>",
	"<p>******* Nova Southeastern University *******<br/>Fischler School of Education and Human Services<br/>800.986.3223<br/><a href=\"http://www.SchoolofEd.nova.edu\">www.SchoolofEd.nova.edu</a><br/></p>",
	"<p>******* Oklahoma State University ******<br/>Center for Executive and Professional Development<br/>405.744.4054<br/><a href=\"http://spears.okstate.edu/cepd/dl\">spears.okstate.edu\/cepd\/dl</a><br/></p>",
	"<p>******* Rochester Institute of Technology *******<br/>716.475.2229<br/><a href=\"http://online.rit.edu\">online.rit.edu</a><br/></p>",
	"<p>******* St. John's University *******<br/>888.9stjohns<br/><a href=\"http://www.stjohns.edu/distancelearning\">www.stjohns.edu/distancelearning</a><br/></p>",
	"<p>******* Southern New Hampshire University *******<br/>866.860.0449<br/><a href=\"http://www.snhu.edu/de\">www.snhu.edu/de</a><br/></p>",
	"<p>******* Sullivan University *******<br/>502.451.0815<br/><a href=\"http://www.sullivan.edu\">www.sullivan.edu</a><br/></p>",
	"<p>******* SUNY Learning Network *******<br/>800.875.6269<br/><a href=\"http://sln.suny.edu/cka/slnusdla.htm\">sln.suny.edu/cka/slnusdla.htm</a><br/></p>",
	"<p>******* Syracuse University *******<br/>315.443.3225<br/><a href=\"http://www.suce.syr.edu\">www.suce.syr.edu</a><br/></p>",
	"<p>******* Tennessee Board of Regents *******<br/>615.366.3981<br/><a href=\"http://tbr.state.tn.us\">tbr.state.tn.us</a><br/></p>",
	"<p>******* UMASS Online *******<br/>508.856.1030<br/><a href=\"http://www.umassonline.net\">www.umassonline.net</a><br/></p>",
	"<p>******* The University of Texas at Austin *******<br/>512.232.5000<br/><a href=\"http://www.utexas.edu/cee/dec/\">www.utexas.edu/cee/dec/</a><br/></p>",
	"<p>******* The College of Westchester *******<br/>914.831.0466<br/><a href=\"http://www.cw.edu\">www.cw.edu</a><br/></p>",
	"<p>******* University of Wisconsin-Platteville Online *******<br/>800.362.5460 <br/><a href=\"http://www.uwplatt.edu/disted/\">www.uwplatt.edu/disted/</a><br/></p>",
	"<p>******* Verizon Online *******<br/>608.342.1020 <br/><a href=\"http://www.verizon.com/onlinecourses/\">www.verizon.com/onlinecourses/</a><br/></p>",
	"<p>******* Virginia Tech *******<br/>540.231.3054<br/><a href=\"http://www.iddl.vt.edu\">www.iddl.vt.edu</a></p>"
	];



var count = 0
	function display()
	{

		if(count == quotation.length){
			count = 0
		}

		//current=Math.floor(Math.random()*quotation.length)
		document.getElementById('quotation').innerHTML=quotation[count]
		++count;
		setTimeout("display()",5000)
	}


		if(window.addEventListener)
		{
			window.addEventListener('load', display, false);
		}
		else if(window.attachEvent)
		{
			window.attachEvent('onload', display);
		}
		else
		{
			window.onload = display;
		}
