function navBarText (option1){
	// set the number of quotes and testimonials
	var quoteNum = 11
	var testimonialNum = 0
	
	
	var quote = new Array(quoteNum)
	var quoteWho = new Array(quoteNum)
	var testimonial = new Array(testimonialNum)
	var testimonialWho = new Array(testimonialNum)
	
	//quotes
	quote[0] = "Imagination is more important than knowledge. Knowledge is limited. Imagination encircles the world.";
	quoteWho[0] = "Albert Einstein";
	
	quote[1] = "If, at first, an idea is not absurd, there is no hope for it.";
	quoteWho[1] = "Albert Einstein";
	
	quote[2] = "Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.";
	quoteWho[2] = "Scott Adams";
	
	quote[3] = "By logic and reason we die hourly. By imagination we live.";
	quoteWho[3] = "William Butler Yeats";
	
	quote[4] = "Before you can do something that you've never done, you have to be able to imagine it is possible.";
	quoteWho[4] = "Jean Shinoda Bolen";
	
	quote[5] = "If you can dream it, you can do it.";
	quoteWho[5] = "Walt Disney";
	
	quote[6] = "It's kind of fun to do the impossible.";
	quoteWho[6] = "Walt Disney";
	
	quote[7] = "A teacher sent the following note home with a six-year-old boy: 'He is too stupid to learn.' That boy was Thomas A. Edison.";
	quoteWho[7] = "Thomas Edison";
	
	quote[8] = "If we all did the things we are capable of doing, we would literally astound ourselves.";
	quoteWho[8] = "Thomas Edison";
	
	quote[9] = "Learn from yesterday, live for today, hope for tomorrow.";
	quoteWho[9] = "Albert Einstein";
	
	quote[10] = "Tell me and I forget.<br>Teach me and I learn.<br>Involve me and I remember.";
	quoteWho[10] = "Benajamin Franklin";
	
	
	//testimonials
	testimonial[0] = "I couldn't believe how amazing the experience was!";
	testimonialWho[0] = "Random Person1";
	
	testimonial[1] = "It really was an amazing program.";
	testimonialWho[1] = "Student";
	
	// end arrays*******************************************************
	var ret = "";
	var type = "";
	var rando = 0;
	
//	ret = "<h3>Mission Statement:</h3><br>\n";
	ret = "";
	if (option1 == "quote"){
		type = option1;
	}
	else if (option1 == "testimonial"){
		type = option1;
	}
	else {
		rando = Math.floor(Math.random()*(quoteNum + testimonialNum));
		if (rando < quoteNum){
			type = "quote";
		}
		else{
			type = "testimonial";
		}
	}
	
	if (type == "quote"){
		rando = Math.floor(Math.random()*quoteNum);
		ret = ret + "<h3>Quote:</h3>\n";
		ret = ret + quote[rando] + "<br>\n - " + quoteWho[rando] + "<br>\n";
	}
	else{
		rando = Math.floor(Math.random()*testimonialNum);
		ret = ret + "<h3>Testimonial:</h3>\n";
		ret = ret + testimonial[rando] + "<br>\n - " + testimonialWho[rando] + "<br>\n";
	}
	ret = ret + '<br><a href="http://www.dyslexia.com"><img src="images/ddailogo.gif" border="0" alt="Ashley Grice is Licensed and Certified by Davis Dyslexia Association International"/></a>' + "<br>\n";
	return ret;
}
		
		
		
		
		
