	//Random Text Script
	var fcolor="#000000"  //font color
	var fface="Arial";//font face
	var fsize=1;      //font size
	var bold="no";   //Bold?
	var italc="no";  //Italic?
	var under="no";   //Underlined?
	var max=5;        //Number of sentaces from 1 to 10

	var text1="<i>The North Country's unique climate lends itself to a variety of recreational activities for all ages and interests.</i><br>-Ben &amp; Joanne Murphy"//;Sentence 1
	var text2="<i>As a teacher/learner I thrive, because I am encouraged to be a lifelong learner through the acceptance of numerous educational opportunities designed to increase my repertoire of innovative teaching methodology.</i><br>-Elizabeth Kelly";//Sentence 2
	var text3="<i>While at Littleton, I have found many mentors to help me in my pursuit of a program that works for a diversity of students.</i><br>-Bill Church";//Sentence 3
	var text4="<i>Our original \'plan\' was to stay in Berlin for two years and then move to a more permanent position elsewhere.  What we discovered, however, is that Berlin offers an excellent place to live, work and raise a family.</i><br>-Daniel &amp; Ann Elise Record";//Sentence 4
	var text5="<i>The gift of teaching is a peculiar talent, and implies a need and a craving in the teacher himself/herself.</i><br>-Chapman";//Sentence 5

	//Dont modify anything below this line
	var r=Math.floor(Math.random()*max);
	var c=r+1;

	if(bold=="yes"){document.write("<b>");}
	if(italc=="yes"){document.write("<i>");}
	if(under=="yes"){document.write("<u>");}

	document.write("<FONT FACE='"+fface+"' SIZE='"+fsize+"' COLOR='"+fcolor+"'>");

	document.write(eval("text"+c));

	document.write("</FONT>");

	if(bold=="yes"){document.write("</b>");}
	if(italc=="yes"){document.write("</i>");}
	if(under=="yes"){document.write("</u>");}
