// Store some random quotations
var random_quotes = new Array ( );
random_quotes[0] = "''Karen is a unique and magical coach, her ability to laser in on 'the truth' always left me feeling clear and in a positive perspective.''";
random_quotes[1] = "''Karen has had a very powerful impact on my life, dreams that were only dreams are now shaping up to a very exciting reality.''";
random_quotes[2] = "''When I first spoke to Karen four months ago I had dreams of being a photographer and working for a charity.''";
random_quotes[3] = "''Karen, through the life coaching, manages to shed light to the darkest corners of my mind, bringing out aspects of me I had forgotten I had or was not aware of. She manages to make me have a fresh look at my life and be full of inspiration for the future!''";
random_quotes[4] = "''Coaching with Karen has been crucial in the changes that I had planned for my life. Karen has helped me losing 3 stones, changing job, changing country and achieving an overall sense of self-respect and independence.''";
random_quotes[5] = "''Karen is an incredibly powerful coach who has helped me to really address who I am and what I want from life.''";
random_quotes[6] = "''Thank you for your interest and questions which have helped me focus on both the need and the solution. Instead of getting bogged down in the need and not seeing the solution''";
random_quotes[7] = "''After only two weeks of life coaching with Karen, I feel more positive about the future. It is great to have someone to talk to about how you are feeling at any moment of the day.''";
random_quotes[8] = "''Karen brings out the real me. I now have the confidence to achieve my values - a significant life change in less than 2 months.''";

// Pick a random quote from the list,
// and set the 'random-quote' paragraph content to that quote

function pick_quote ( )
{
  document.getElementById("random-quote").innerHTML = random_quotes[rand(9)-1];
}
function rand ( n )
{
  return ( Math.floor ( Math.random ( ) * n + 1 ) );
}