var testimonials = ["" , "", "", "" ];
var Ntestimonials = testimonials.length;
var Ntest = Ntestimonials-1;
var firstTime=1;

testimonials[0] += "<p class='pe2'>From a financial advisor with managerial responsibilities:</p>";
testimonials[0] += "<p class='pe4a'>I was surprised how the Attribute Index identified an area in my life of which I wasn’t fully aware.  It was an area that I’ve been                                    struggling with in the last few months but hadn’t “put a label on it” yet.  This was the area of Self Direction.  To describe it I                                    fall back on the old saying that 'I couldn’t see the forest for the trees'.  Since completing the Attribute Index and reviewing it                                    with you I realized that I needed to take a step back to see where I am and figure out where I’m going.</p>";
testimonials[0] += "<p class='pe4a'>It also brought to light that a blind spot for me is the value of systems and structure and when my business gets hectic I focus on                                    activities and have less concern for systems and structure which results in added stress.  As a result I feel I have found a new                                    excitement for my business as I can see how systems can really help move it forward and I’ve begun working on these systems already                                    </p>";
testimonials[0] += "<a class='ae2' href='#begin' onClick='nextTestimonial(2);'>Next &#9658;</a>";


testimonials[1] += "<p class='pe2'>From an ex-president of a Chamber of Commerce, now an EFT Practitioner:</p>";
testimonials[1] += "<p class='pe4a'>The biggest learning/understanding I had was confirmation for me of the high level of Empathy I had.  It has given me more                                    confidence with my EFT in knowing that is one of my strengths. It was also great to see where my strengths are and have more words                                    to describe them.</p>";
testimonials[1] += "<p class='pe4a'>As well the low score on the Systems was interesting and it helped having it acurately interpreted. I have reflected back on                                    patterns in my live where I can now see where that 'lack of systems' has left me sometimes spinning with no direction with a                                    resulting frustrated feeling.  I can now consciously be aware of putting more structure in place for myself or/and seek support from                                    those who have a stronger structure in place to assist me in getting more direction.</p>";
testimonials[1] += "<a class='ae2' href='#begin' onClick='nextTestimonial(2);'>Next &#9658;</a>";


testimonials[2] += "<p class='pe2'>From a training facilitator</p>";
testimonials[2] += "<p class='pe4a'>I found the Attribute Index Assessment to be a real insight into how I currently function in both my work life and personal life.                                    </p>";
testimonials[2] += "<p class='pe4a'>I have taken other personality profile tests, but none have given such an accurate and in depth assessment of my strengths and areas                                    for development for all the different aspects of my life. I also found the layout and presentation of the information to be very                                    comprehensive yet clear and easy to understand, enabling me to reference specific areas and very quickly work out what needs to                                    done.</p>";
testimonials[2] += "<p class='pe4a'>The Attribute Index is not just about who I am, but what I can do to make some real and constructive changes in my approach to life.                                    It has been a real asset in helping to understand where I am now and where I can develop without having to follow complicated                                    theories and processes</p>";
testimonials[2] += "<a class='ae2' href='#begin' onClick='nextTestimonial(2);'>Next &#9658;</a>";


testimonials[3] += "<p class='pe2'>From an assistant principal of a high school</p>";
testimonials[3] += "<p class='pe4a'>This deceptively simple intervention has really surprised me by revealing some profound truths and vital areas for my development.                                    It has highlighted my strengths and given me more confidence in using these tools whilst perceptively identifying those areas that                                    need work. The feedback was non-judgemental, frank and thought provoking. Significantly, the feedback has also helped me to                                    understand the different challenges my colleagues face and this is invaluable information for any manager.</p>";
testimonials[3] += "<p class='pe4a'>I would strongly recommend this tool to any reflective manager.</p>";
testimonials[3] += "<a class='ae2' href='#begin' onClick='nextTestimonial(2);'>Next &#9658;</a>";


function nextTestimonial(n) {
	     if (n == 0) return;
	     Ntest = (++Ntest)%Ntestimonials;
		 document.getElementById("No").innerHTML = (Ntest+1) + " of " +  Ntestimonials;
	     document.getElementById("Tstmls").innerHTML = testimonials[Ntest];
         if (n == 2) { window.location.href="#Testimonial"; }
		 return;
}