function loadQuotes(){

	var quote=new Array(10);
		quote[1]="Excellent, really enjoyed the Sales course";
		quote[2]="Real points that I can immediately use at work";
		quote[3]="Gained confidence and learned how to structure presentations";
		quote[4]="The course was clear and concise and I feel I have actually learned something";
		quote[5]="I thought the course was very thought provoking";
		quote[6]="Very interesting and helpful course";
		quote[7]="Very informative and lots of useful tips";
		quote[8]="A very good stress management course";
		quote[9]="Fun course with confident and knowledgeable trainer";
		quote[10]="The course was well delivered and I feel I will benefit from it";		
		
	var client=new Array(10);
		client[1]="Materials Manager, Offshore Company";
		client[2]="Engineering Manager, Offshore Company";
		client[3]="Team Leader, Defence Company";
		client[4]="Senior Accountant";
		client[5]="Lanarkshire Carers";	
		client[6]="Lanarkshire Carers";
		client[7]="IT Manager Public Sector Organisation";
		client[8]="T Houston, Health & Safety Manager Sanmex International Ltd";
		client[9]="Marketing Assistant, Bio-Engineering Company";
		client[10]="Legal Secretary, Edinburgh";			
		
	random_num = (Math.round((Math.random()*9)+1));
	random_num1 = random_num +1;
	random_num2 = random_num -1;
	
	if (random_num1>10){
		random_num1=1;
		random_num2=2;
	}
	
	if (random_num2<1){
		random_num2=10;
	}
	//set the quote
	document.getElementById("quote").childNodes[0].nodeValue="'" + quote[random_num] + "'";
	document.getElementById("quote1").childNodes[0].nodeValue="'" + quote[random_num1] + "'";
	document.getElementById("quote2").childNodes[0].nodeValue="'" +  quote[random_num2] + "'";
	//set the client name
	document.getElementById("client").childNodes[0].nodeValue=" " + client[random_num];
	document.getElementById("client1").childNodes[0].nodeValue=" " + client[random_num1];
	document.getElementById("client2").childNodes[0].nodeValue=" " +  client[random_num2];	

}