// JavaScript Document

// For future editing: 
// every line must be enclosed in double-quotes ""
// <br> denotes a line-break (as seen on the web)
// &quot; (punctuation symbols are exact) is the code way of writing a double-quote "
// &nbsp; is the code way of putting in a non-breaking space.
var wq = [];

wq[0] = "<br>&quot;&nbsp;The important thing is that you are here...&quot;";


wq[1] = "<br>&quot;&nbsp;Your energy body will thank you...&quot;";


wq[2] = "<br>&quot;&nbsp;Shamanic Healing, Soul Retrieval, and Energy <br>"  +
" Medicine of the Incas can remove the roots <br>"  +
" of emotional, psychological, and spiritual wounding...&quot;"  +
"<p class=\"qAuthor\">- Steve</p>";


wq[3] = "<br>&quot;&nbsp;It is the story of all life that is holy and is <br>"  +
" good to tell, and of us two-leggeds sharing in it with <br>"  +
" the four-leggeds and the wings of the air and all <br>"  +
" green things; for these are children of one mother <br>"  +
" and their father is Spirit...&quot;<br>"  +
"<p class=\"qAuthor\">- Black Elk</p>";


wq[4] = "<br>&quot;&nbsp;Seek to do brave and lovely things that are <br>"  +
" left undone by the majority of people.  Give <br>"  +
" gifts of love and peace to those whom others <br>"  +
" pass by...&quot;<br>"  +
"<p class=\"qAuthor\">- Paramahansa Yogananda</p>";


wq[5] = "<br>&quot;&nbsp;Swear not to die you holy Son of God! <br>"  +
" You make a bargain that you cannot keep. <br>"  +
" The Son of Life cannot be killed... <br>"  +
" he is immortal as his Father.&quot;<br>"  +
"<p class=\"qAuthor\">- <span class=\"italic\">A Course in Miracles</span></p>";


wq[6] = "<br>&quot;&nbsp;Seek not outside yourself.  For it will <br>"  +
" fail and you will weep each time an idol falls. <br>"  +
" Heaven cannot be found where it is not, <br>"  +
" and there can be no peace excepting there.&quot;<br>"  +
"<p class=\"qAuthor\">- <span class=\"italic\">A Course in Miracles</span></p>";


wq[7] = "<br>&quot;&nbsp;Welcome to my site.  I am pleased <br>"  +
" that you found it.  My sincerest wish is <br>"  +
" that it will serve you in some way.&quot;<br>"  +
"<p class=\"qAuthor\">- Steve</p>";


wq[8] = "<br>&quot;&nbsp;I have found that the extraction process <br>"  +
" can accomplish in one session what often could <br>"  +
" not be achieved in years of psychotherapy.&quot;<br>"  +
"<p class=\"qAuthor\">- Alberto Villoldo, PhD<br>"  +
"author of <span class=\"italic\">Shaman, Healer, Sage</span></p>";


wq[9] = "<br>&quot;&nbsp;For the shaman everything is sacred. <br>"  +
" The earth we live on is a loving, nurturing <br>"  +
" mother, the sun, a loving father whose warmth <br>"  +
" makes life possible.  The plants and animals, <br>"  +
" all of them are imbued with Spirit.&quot;<br>"  +
"<p class=\"qAuthor\">- Steve</p>";



	

function wqLoad() {
	var theDiv = document.getElementById('welcome_txt');
	qNum = Math.round(10 * Math.random());
	if (qNum > 9) {qNum = 9}
	theDiv.innerHTML = wq[qNum];
}

function wqRep() {
	var theDiv = document.getElementById('welcome_txt');
	qNum = qNum + 1;
	if (qNum > 9) {qNum = 0};
	theDiv.innerHTML = wq[qNum];
}







