function quoteArray()
		{};
   		var quoteArray = new Array();

		quoteArray[0] = "Having read so many inspirational books over the years, I can truly say that your writing is by far the most heart-felt, " + 
		"honest, useful and inspirational. I cannot express how much I have enjoyed reading it and I know I shall draw upon it time and time again.<br/><br/>" +
		"- <i><b>Evelyn Glennie</b><br/>&nbsp;England</i>";
		quoteArray[1] = "I'm almost finished reading your self empowerment book and it's incredible. It's truly changed my life already. " +
		"It's helped me to re-evaluate my entire life and think about my inner flame. " +
		"All my problems have become challenges and I see life in a much more positive view. " +
		"I've read it every page slowly so far in detail and thought about each point, " +
		"it truly is one of the best books I've ever read. I think everyone should have a copy.<br/><br/>" +
		"- <i><b>Ted</b><br/> &nbsp; Player</i>";
		quoteArray[2] = "My name is Garett Heinz and I am a 21 year old senior percussion major at Northern State Universtity in Aberdeen, South Dakota. " +
		"Before I read your book I had very specific goals. I also had a strong feeling of direction and purpose in my life. " +
		"But your book helped me to be even more inspired and guided to do great things. " +
		"The path that you have traveled is so similar to the path that I have begun. " +
		"So, I thank you from the bottom of my heart for the example and experiences you portrayed in your book. " +
		"I sincerely hope that our paths will cross again. I feel confident that they will. " +
		"Peace to you and your family, Garett Heinz Aberdeen, South Dakota<br/><br/>" + 
		"- <i><b>Student, Teacher, Player</b> <br/> &nbsp; South Dakota </i>";
		quoteArray[3] = "Thank you for the CSE Seminar held yesterday!! I had a wonderful time, lots of laughs, " +
		"and tools that I know will help me become a more effective person. I've always been thankful to you for your inspiration and kind words, " +
		"and yesterday was even more special. Now I know I can accomplish all that I set out to do!!! <br/><br/>" +
		"- <i><b>Marc Grieco</b><br/>&nbsp; Student, Player<br/>&nbsp; New York</i>";
		quoteArray[4] = "Your motivational speech, in my eyes, changed the views of a lot of people on life, especially my own. " +
		"I too am a musician and what you said really made me think about my future and what I can do with it. " +
		"I'm sure that I am saying this on behalf of everyone at RHS when I say that your presence was more than welcome and that " +
		"we wish we could have more people like yourself come in and tal to us.<br/><br/>" + 
		"- <i><b>Student</b><br/> &nbsp; Cape Breton, Canada </i>";
	
		var random_number = Math.floor(Math.random() * 5);
		document.write(quoteArray[random_number]);