/*
Title:			JavaScript for displaying a randomly selected quote
				or testimonial when the file loads. The text that 
				displays is determined by the contents of the array. 
Author:			Rene Matchette
Cluster:		IERDL.011.130
Create Date:	2003.02.13
File Name:	 	randomquotes.js / randomtesti.js
Comments: 		The code is the same for both scripts. The difference is
				is in the text in the array. To break lines, use the <br>
				code. Similarly, you can use the HTML formatting codes, 
				like <b></b> and <i></i>
Primary Source:	Crows JavaScripts -- Free JavaScript Examples	
				http://www.crows.co.uk/Javascript/quotes.htm
				
Instructions: 	Put this file in the scripts file for the site. For example, mq/assets/scripts. 	
				
				Place the following text in the body of the document. 

				<!-- External JavaScript that provides random testimonials or quotes -->
				<script src="assets/scripts/randomtesti.js" language="JavaScript" type="text/javascript">
				<!--- Begin JavaScript	
				function quote();
				// End JavaScript --->
				</script>
				
				<noscript>
				*** The text you want to display when JavaScript is not in use. ***
				</noscript>			
				
				
*/	



//Define the quote function
function quote() { 
//Random Quotes
} ; quote = new quote() ; n = 0

// Quote database------------------------------------
  quote[n++]= "Your treatment was both physically and emotionally empowering.  You easily identified my challenges and helped me to overcome obstacles.  During one session with you, I definitely connected to the spiritual universe.  I experienced powerful healing energy, wellness and peace.  You have a truly amazing healing capacity and I am privileged to have met you.<br><br><b>West Covina, California<br>Stress</b>"
 
  quote[n++]= "When I did Exercise #6, my lower back pain disappeared! I suffer from spinal stenosis and up to that point my back ache was bad. <br><br><b>Palm Desert, CA</b>"

  quote[n++]= "After an hour session with you, a deep and profound healing took place. I felt a complete rejuvenation of body, mind, and spirit. Your technique is truly transformational!<br><br><b>Carmel, California<br>Emotional Clearing</b>"
  
  quote[n++]= "I am happy to say that after the first session with you I made about a 25% improvement in my knee. Though not at full strength I found that I could once again take up jogging and could jump using the injured leg; two activities, which I have not been able to do for some time.<br><br>The treatment itself cleaned out a lot of the negative energy I had been carrying around. I felt more relaxed, during and in the days after the session, than I have felt in months. I have also found that, along with the improvement in my knee, that my overall attitude and heath has improved.<br><br><b>San Bernardino, California<br>Knee Problems</b>"
  
  quote[n++]= "Bernard, I wanted to thank you for the Qigong treatment last weekend. The chest congestion I was feeling was alleviated and I was much more relaxed afterwards. As we discussed, I felt a warm, relaxing sensation in the affected area and that has lasted several days. I look forward to the next treatment. Thanks again.<br><br><b>Laguna Hills, California<br>Chest Congestion</b>"
  
  quote[n++]= "I have not slept without stomach pain for three months. However, after the treatment, I was able to sleep comfortably once again, pain-free, and there has been no return of the pain. Amazing!<br><br><b>Redlands, California<br>Hepatitis C</b>"
  
  quote[n++]= "With severe health problems, the removal of my left lung and brain surgery, it was, at times, hard to breathe and I was depleted of physical energy.  During my very first session with you I could feel the energy vibrate in the missing lung cavity.  With subsequent sessions I felt many beneficial changes in my body, mind and spirit.  I am now breathing more efficiently, have more physical endurance and my attitude is increasingly positive.  Through my sessions and Qigong exercises I feel inspired to be a part of my healing process.<br><br><b>West Covina, California<br>Lung and Brain Cancer</b>"
  
/*   quote[n++]= "--- place quote between quote marks. use no other quote marks! use html or ascii codes ---" */
  
i=Math.floor(Math.random() * n) ;
document.write( quote[i] ) ;