// JavaScript Document
<!-- Hide from old browsers

var randomnumber = Math.random() ;
images = new Array
images[1] = new Array("/images/Quote-1.gif", "In order to support the kinds of community changes necessary to improve people’s chances for a desirable future, virtually all existing human service policies and agencies will have to change the ways they regard people.");

images[2] = new Array("/images/Quote-2.gif", "A person centred approach encourages us to take direction from people by identifying their interests, gifts and desires.");

images[3] = new Array("/images/Quote-3.gif", "Person centred planning challenges us to value each person as unique, filled with gifts and possibilities.");

images[4] = new Array("/images/Quote-4.gif", "Person centred change challenges us to learn together with people about how to solve problems over time to make meaningful change happen.");

images[5] = new Array("/images/Quote-5.gif", "Person centred change challenges us to learn new ways of building relationships, finding welcoming spaces in community life and inventing new forms of community experience.");

images[6] = new Array("/images/Quote-6.gif", "Person centred planning grew out of a passionate concern to support people with developmental disabilities in discovering and contributing their gifts.");

images[7] = new Array("/images/Quote-7.gif", "Person centred planning is an empowering approach to helping people plan their future and organise the supports and services they need.");

images[8] = new Array("/images/Quote-8.gif", "All people should be able to decide how they will live their lives. ");

images[9] = new Array("/images/Quote-9.gif", "Person centred planning is the collective term for a family of planning styles which share common principles which seek to answer two fundamental questions: Who are you and who are we in your life?");

images[10] = new Array("/images/Quote-10.gif", "Put simply, person centred planning is a way of assisting people to work out what they want, the support they require and helping them get it.");

images[11] = new Array("/images/Quote-11.gif", "Person centred approaches are ways of commissioning, providing and organising services, rooted in listening to what people want, to help them live in their communities as they choose.");

images[12] = new Array("/images/Quote-12.gif", "Those who treat person centred planning simply as the technique, and fail to provide for their own development and support, will offer little benefit to the people they plan with");

images[13] = new Array("/images/Quote-13.gif", "In developing person centered plans we need to be sure that we are focused on helping people get better lives and not just better paper.");


var rand1 = Math.round( (images.length) * randomnumber) ;
if (rand1 < 1)
	rand1 = 1;
if (rand1 > images.length - 1)
rand1 = images.length - 1;
var image = images[rand1]

// -- End Hiding Here -->