//http://www.computerhope.com/j15.htm//
quotes = new Array(8);
authors = new Array(8);
quotes[0] = "The chance to explore buried parts of myself in a safe and trusting environment.";
authors[0] = "T.T. Gravesend, Kent";
quotes[1] = "Fulfilling my goal of carrying out voluntary work overseas - the coaching has allowed this to happen.";
authors[1] = "E.W. Faversham, Kent";
quotes[2] = "Without your encouragement and example I would have found it difficult to make my changes.  Oh, I could talk about it [and I did, over and over and over again] but I was hesistant about taking a real step ... you may not be aware of it, but you've made a real and posiitive difference.";
authors[2] = "J.W. London";
quotes[3] = "You were firm without being bossy but it was essential that we'd had our face to face meeting at the beginning so that I knew you are a real, warm, caring and lovely person.  That allows you to be professional and slightly cool/clinical and allows me to accept challenges from you because I know you are playing a role - an important role designed to help me.  I wouldn't let a friend or family member ask me What are you going to do about it? and When are you going to do it? I'd tell them to leave me alone, but I will take it from a professional coach.";
authors[3] = "J.W. London";
quotes[4] = "I feel I benefitted from that one session and was absolutely amazed at how positive I was";
authors[4] = "M.S. Glasgow";
quotes[5] = "I have made a few positive changes already. Applied for a new job and now have an interview this friday - total career change hopefully.";
authors[5] = "J.P.";
quotes[6] = "I felt our conversation went well and I came away feeling positive about working with you.";
authors[6] = "N.W.";
quotes[7] = "After our chat you gave me something positive to work with and I was able to put a reason behind my negative thoughts. It gave me hope that I did have a choice in which direction my life was going.";
authors[7] = "K.S. Eastbourne";


//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<font color=#666666><DL>\n</font>");
document.write("<font color=#666666><DT>" + "\"" + quotes[index] + "\"\n</font>");
document.write("<font color=#666666><DD>" + "-- " + authors[index] + "\n</font>");
document.write("<font color=#666666></DL>\n</font>");

//done
