// =======================================
// set the following variables
// =======================================
// Set slideShowSpeed (in milliseconds)...
var slideShowSpeed = 12000
// our testimonials...
var Testimonial = new Array()
// to add more testimonials, just continue
// the pattern, adding to the array below
Testimonial[0] = "<p>&quot;I have known and worked with Jan Smith for many years since 1993.  She is one of the gentlest, most loving people I have the privilege to know.  Jan is a solid, capable, caring counselor and an excellent Reiki practitioner and teacher.  She is very heart-centered and her openness and intuition add considerable depth and dimension to her work, both as counselor and as Reiki practitioner.&quot;</p><p>Carol Von Kaenel<br>Minister and Reiki Master</p>"
Testimonial[1] = "<p>&quot;Jan is truly an inspirational teacher.  I count her as one of the blessings in my life.&quot;</p><p>Donna Raycraft<br>MA, CFLE</p>"
Testimonial[2] = "<p>&quot;I was introduced to Reiki and to Jan when I was at an emotional low point in my life.  I found that not only was the introduction to Reiki life changing, but so was the introduction to Jan.  She is a wonderful, caring, and intuitive teacher.  And over the past eight years, she has supported me, challenged me, and coached me.  She has many tools that she has used skillfully to help me realize my dreams and goals.  I rejoice that our paths came together in this life.&quot;</p><p>Diane April<br>Holistic Therapist</p>"
Testimonial[3] = "<p>&quot;Jan demonstrates amazing clarity in recognizing and identifying issues that obstruct us.  The simplicity and profound effectiveness of the strategies that she offers make her counseling services unique and powerful.  Jan's intuitive counseling services will empower any willing participant to move forward in their life journey regardless of obstacles.&quot;</p><p>Nancy Thurrell<br>R.N.</p>"
// =======================================
// script that handles changing the display
// (do not edit anything below this line)
// =======================================
var t
var j = 0
var p = Testimonial.length
var preLoad = new Array()
for (i = 0; i < p; i++){
   preLoad[i] = new String()
   preLoad[i] = Testimonial[i]
}
function runTestimonials(){
	document.getElementById("Testimonial").innerHTML= preLoad[j]
	j = j + 1
	if (j > (p-1)) j=0
	t = setTimeout('runTestimonials()', slideShowSpeed)
}

function nextTestimonial(){
	document.getElementById("Testimonial").innerHTML= preLoad[j]
	j = j + 1
	if (j > (p-1)) j=0
}