// 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</p><p>the change you wish</p><p>to see</p><p>in the world.</p><p class='cite'>Mahatma Gandhi";
lotus[1] = "Who looks outside,</p><p>dreams;</p><p>who looks inside,</p><p>awakes.</p><p class='cite'>Carl Jung";
lotus[2] = "Don't aim for success</p><p>if you want it;</p><p>just do what you love and believe in,</p><p>and it will come naturally.</p><p class='cite'>David Frost";
lotus[3] = "Enlightenment</p><p>is not about</p><p>being good,</p><p>it is about being.</p><p class='cite'>P&rsquo;TAAH";

function writeLotus() {
	document.write("<p>" + lotus[randomNumber(lotus.length-1)] + "</p>")
}

// random quote generator for water lettuce

var lettuce = new Array;

lettuce[0] = "<em>&ldquo;Randy&rsquo;s uncanny ability to ask the right questions to uncover the truth is an invaluable skill as a life coach.&rdquo;</em></p><p><strong>Tricia R.</strong>";
lettuce[1] = "<em>&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;</em></p><p><strong>Oxana K.</strong>";
lettuce[2] = "<em>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.</em></p><p><strong>Tauna</strong>";

function writeLettuce() {
	document.write("<p>" + lettuce[randomNumber(lettuce.length-1)] + "</p>")
}

// random generator for contact water lettuce

var lettuceContact = new Array;

lettuceContact[0] = "<em>Don't Wait A Moment Longer</em></p><p><strong>Call Me Today &ndash; 310.445.8644</strong></p><p><em>Start achieving goals now!</em>";
lettuceContact[1] = "<em>Call me at</em><br /><strong>310.445.8644</strong><br />for a <strong>free 30 minute consultation</strong></p><p>I&rsquo;m happy to answer any of your questions about coaching or my process";

function writeLettuceContact() {
	document.write("<p>" + lettuceContact[randomNumber(lettuceContact.length-1)] + "</p>")
}


//open external links in new window
function externalLinks() { 
 if (!document.getElementsByTagName) return; 
 var anchors = document.getElementsByTagName("a"); 
 for (var i=0; i<anchors.length; i++) { 
   var anchor = anchors[i]; 
   if (anchor.getAttribute("href") && 
       anchor.getAttribute("rel") == "external") 
     anchor.target = "_blank"; 
 } 
} 
window.onload = externalLinks;