function makeArray(len) {
for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

// you add as many quotes as you want here just make sure to change the makeArray(number)

ideas = new makeArray(15);
ideas[0] = "In championing a pioneering accreditation programme which recognises the achievements of staff in the voluntary sector David has demonstrated his commitment to developing people and organizations and an energetic determination to create synergy and positive impact through collaboration and partnership.";
ideas[1] = "I would have no hesitation in recommending the services and skills of David Kemp. I have found the experience of undertaking Executive/Life Coaching with him to be invaluable."
ideas[2] = "Having initially been slightly sceptical as to the benefits to be derived from this process I now find myself to be a convert!"
ideas[3] = "The process that David implemented allowed me to step back, analyse situations, make decisions and learn from the experience."
ideas[4] = "His non-judgemental but thought provoking style enabled me to become very self aware and improve my situation. I have much to thank him for."
ideas[5] = "Through his energy and passion David has helped establish a programme that enables people from business and commerce to enhance their leadership, communication & people skills and fulfil their continuous professional development obligations whilst benefiting their local communities and allow the organisations that employ them to demonstrate the sincerity of their commitment to social responsibility."
ideas[6] = "He actively promotes the win-win opportunities and the measurable benefits to be gained from business and community working together."
ideas[7] = "David brought a new perspective to the development of our people. The outcomes of the Impact Training, which was a major initiative across the whole business, are improved communication, motivation, people skills and leadership."
ideas[8] = "David’s enthusiasm, determination and experience together with his ability to engage people in the change process played a major part in enabling us to meet and exceed our objectives."
ideas[9] = "The presentation skills programme which David developed for us hit the spot! It was pitched at the right level and gave everyone an insight into how they are perceived by others. We developed the ability to be more confident and use the right gestures, tone and body language to really make an impact."
ideas[10] = "I would not hesitate to recommend the skills and abilities of David to deliver the results needed in a business environment."
ideas[11] = "The partnership we developed delivered the results that we were looking for and I would wholehartedly recommend David's abilities to do the same for other organisations."
ideas[12] = "Our aim was to develop a whole range of our managers from the more inexperienced to those who have been in senior positions for a number of years. The programme that David developed for us was broad enough to cover both of these groups yet specific enough so that each individual could have the development they needed."
ideas[13] = "His ability to connect with and understand the differing needs of individuals allowed full buy-in to the process and produced results in several of them which were far above what I expected at the outset. The partnership we developed delivered the results that we were looking for and I would wholehartedly recommend David's abilities to do the same for other organisations."
ideas[14] = "David Kemp held a Communications Workshop at Bolton Hospice with a group of staff who are facing many changes. The Workshop empowered people to communicate with each other to best effect during times of stress and pressure. The Workshop has proved extremely useful to all concerned and made the staff involved feel valued by the organisation.  Although the event was held on site, they felt that they had been given a ‘day out’ to spend time together and gain some understanding of each others problems. I would certainly recommend David.  He is a great communicator and manages to pass on those skills to others."



ideasname = new makeArray(15);
ideasname[0] = "Lesley Groom. Principal Lecturer Department of Health & Social Studies, University of Bolton";
ideasname[1] = "Taryn Hindle. Operations Manager, Wilkinson Hindle. Recruitment to Recruitment Specialists"
ideasname[2] = "Taryn Hindle. Operations Manager, Wilkinson Hindle. Recruitment to Recruitment Specialists"
ideasname[3] = "Taryn Hindle. Operations Manager, Wilkinson Hindle. Recruitment to Recruitment Specialists"
ideasname[4] = "Taryn Hindle. Operations Manager, Wilkinson Hindle. Recruitment to Recruitment Specialists"
ideasname[5] = "Peter Sloan. Trustee of Volunteering England. Co-ordinator Bolton Volunteer Bureau"
ideasname[6] = "Peter Sloan. Trustee of Volunteering England. Co-ordinator Bolton Volunteer Bureau"
ideasname[7] = "Chris Townsend. National HR Manager, MITIE Cleaning Ltd"
ideasname[8] = "Chris Townsend. National HR Manager, MITIE Cleaning Ltd"
ideasname[9] = "Maggie Slavin. Training & Development Manager, Stylo Group plc"
ideasname[10] = "Maggie Slavin. Training & Development Manager, Stylo Group plc"
ideasname[11] = "Phil Ryan. Local Area Director, LloydsTSB plc"
ideasname[12] = "Phil Ryan. Local Area Director, LloydsTSB plc"
ideasname[13] = "Phil Ryan. Local Area Director, LloydsTSB plc"
ideasname[14] = "Margaret Evans. Chief Executive. Bolton Hospice"


// The random number generator.
function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
var now = new Date()
var seed = now.getTime() % 0xffffffff

quotenum=rand(ideas.length)