<!-- 
/*
 Puts a random quote where DisplayQuote is called
*/ 


		function text() {};

		function DisplayQuote(){
		text = new text();
		number = 0;

		// textArray
		text[number++] = "\"Developing your communication skills,you will do more for your selfconfidence, self esteem, sales, and success, than any other skill. . .communication is number one.\"  - Mary-Ellen Drummond"
		text[number++] = "\"What you say to yourself is more important than what is actually going on in your life.\" - Robert Pante"
		text[number++] = "\"Act apologetic and you will lose. Act certain and you will win.\"  - Robert Pante"
		text[number++] = "\"Learning to make a powerful connection with audience is the key to being a successful speaker.\"    - Barbara De Angelus,Ph.D"
		text[number++] = "\"The man with confidence in himself gains the confidence of others.\"  - Maya Angelou, Wouldn’t Take Nothing For My Journey Now" 
		text[number++] = "\"Confidence is an inside job.\"  - Maya Angelou, Wouldn’t Take Nothing For My Journey Now"
		text[number++] = "\"Any person who has charm and some confidence can move in and through societies ranging from the most privileged to the most needy. Style allows the person to appear neither inferior in one location nor superior in the other.\"  - Maya Angelou, Wouldn’t Take Nothing For My Journey Now"
		text[number++] = "\"Confidence can get you places.\"  - Erica Drummond, author of Quotes for Kids,at age 12"
		text[number++] = "\"Project confidence and demonstrate that you believe in yourself and in what you’re doing, because if you don’t believe in you, why should your audience?\"  - Mary-Ellen Drummond"
		// keep adding items here...

		

		increment = Math.floor(Math.random() * number);

		document.write(text[increment]);

		};
		//-->
