// Random number generator

function randomNumber(n) {
	number = Math.floor(Math.random() * (n + 1));
	return number;
}

// random quote generator for lotus

var lotus = new Array;

lotus[0] = "You must be<br />the change you wish<br />to see<br />in the world.<br /><strong>Mahatma Gandhi</strong>";
lotus[1] = "Who looks outside,<br />dreams;<br />who looks inside,<br />awakes.<br /><strong>Carl Jung</strong>";
lotus[2] = "Don't aim for success<br />if you want it;<br />just do what you love and believe in,<br />and it will come naturally.<br /><strong>David Frost</strong>";
lotus[3] = "Enlightenment<br />is not about<br />being good,<br />it is about being.<br /><strong>P&rsquo;TAAH</strong>";
lotus[4] = "The privilege<br />of a lifetime<br />is being<br />who you are.<br /><strong>Joseph Campbell</strong>";
lotus[5] = "The journey<br />of a thousand miles<br />must begin<br />with a single step.<br /><strong>Lao Tzu</strong>";
lotus[6] = "We are not here<br />merely to make a living.<br />We are here<br />to enrich the world.<br /><strong>Woodrow Wilson</strong>";
lotus[7] = "The spiritual life<br />does not remove us<br />from the world but<br />leads us deeper into it.<br /><strong>Henri J. M. Nouwen</strong>";
lotus[8] = "The real voyage<br />of discovery consists not<br />in seeking new landscapes,<br />but in having new eyes.<br /><strong>Marcel Proust</strong>";
lotus[9] = "Past and future<br />are in<br />the mind only -<br />I am now.<br /><strong>Sri Nisargadatta Maharaj</strong>";
lotus[10] = "Everything in your life<br />is there as a vehicle<br />for your transformation.<br />Use it! <br /><strong>Ram Dass</strong>";
lotus[11] = "We choose<br />our joys and sorrows<br />long before<br />we experience them.<br /><strong>Kahlil Gibran</strong>";

function writeLotus() {
	document.write(lotus[randomNumber(lotus.length-1)])
}

// random quote generator for water lettuce

var lettuce = new Array;

lettuce[0] = "<p>&ldquo;Randy&rsquo;s uncanny ability to ask the right questions to uncover the truth is an invaluable skill as a life coach.&rdquo;</p><p><strong>Tricia</strong></p>";
lettuce[1] = "<p>&ldquo;Randy Spelling is an extraordinary life coach and a powerful healer. What he does is truly transformational. I would like to make it mandatory for everyone to experience his work.&rdquo;</p><p><strong>Oxana</strong></p>";
lettuce[2] = "<p>&ldquo;My first session with Randy was a remarkable journey of self-discovery and spiritual renewal. I came away from our meeting with the realization that I have everything within me to create exactly what I need and want in life.&rdquo;</p><p><strong>Tauna</strong></p>";
lettuce[3] = "<p>&ldquo;In as much as I am able to allow myself to be quiet and calm - my answers are born. Randy Spelling is my midwife.&rdquo;</p><p><strong>Kathy</strong></p>";
lettuce[4] = "<p>&ldquo;Working with Randy has provided me with many useful tips to control stress and look for the positives while managing the negatives. He has helped me see that I have the power within me to be in the moment.&rdquo;</p><p><strong>Jessica</strong></p>";
lettuce[5] = "<p>&ldquo;Randy has a way of taking you where you are and helping you navigate to where you need to go. I've had a shift in my perspective that has allowed more freedom, peace, and contentment than I've ever experienced before.&rdquo;</p><p><strong>Jeffrey</strong></p>";
lettuce[6] = "<p>&ldquo;Comforting, compassionate and healing are just some words that come to mind after each coaching session with Randy Spelling. Having Randy as a life coach is one of the best decisions I have ever made.&rdquo;</p><p><strong>Holly</strong></p>";
lettuce[7] = "<p>&ldquo;Using his patience, empathy and intuition to full effect, Randy helps me define what I want to achieve, consider the best way to do it, and spring into productive action. The result is an amazing new sense of personal transformation...&rdquo;</p><p><strong>Bill</strong></p>";

function writeLettuce() {
	document.write(lettuce[randomNumber(lettuce.length-1)])
}
