// JavaScript Document


// tell me the images in order
var thispara = new Array('<p>"Leaf are flexible and able to react to the growing and ever-changing demands of our organisation. They’ve been with us since the beginning and I have no hesitation in recommending their services."</p><p class="quote">House Services Manager,<br />financial services company</p><p class="link"><a href="case2.htm" class="casestudylink">click here</a> for full case study</p>','<p>"Since they started running our catering operation, Leaf have proved first-class in identifying and responding to the needs of customers during the day - and theatregoers in the evening. We have been very impressed with their flexible approach, service and quality."</p><p class="quote">Mary Caws, Executive Director<br />Watford Palace Theatre</p><p class="link"><a href="case1.htm" class="casestudylink">click here</a> for full case study</p>','<p>"The team at Leaf have always shown their genuine desire to give us the best service possible – and have succeeded in doing so."</p><p class="quote">Chairman,<br />professional football club</p><p class="link"><a href="case.htm" class="casestudylink">click here</a> for case studies</p>','<p>"Our association with Leaf has genuinely been a partnership, as they proposed at the outset. They significantly improved our service, product and hygiene standards – in the face of a huge increase in local competition."</p><p class="quote">Managing Director<br />Major department store</p><p class="link"><a href="case.htm" class="casestudylink">click here</a> for case studies</p>','<p>"Leaf have provided a wide range of expertise – including trouble-shooting, staff recruitment, stock control, menu origination, creativity and cost-effectiveness.  We’ve been delighted."</p><p class="quote">Director<br />Communications company</p><p class="link"><a href="case.htm" class="casestudylink">click here</a> for case studies</p>');

/* which para start with? */
seedNum = 0;


/* function that checks the DOM */
function getObj(name){
if (document.getElementById)
  {this.obj = document.getElementById(name);}
else if (document.all)
  {this.obj = document.all[name];}
else if (document.layers)
  {this.obj = document.layers[name];}
}

/* function that gets the para */
function getPara(thisreqnum) {
//alert(thisreqnum);
var thisHTML = thispara[thisreqnum];
//if ((thisreqnum<(thispara.length)) && thisreqnum>=0) {
x = new getObj("quotehere");
if (document.getElementById || document.all) {
x.obj.innerHTML = thisHTML;
}
else {
x.obj.document.open();
x.obj.document.write(thisHTML);
x.obj.document.close();
}
//}
}

function prepNum(reqNum) {
	itemsLength = thispara.length;
	seedNum = reqNum
	if (seedNum > (itemsLength-1)) {seedNum = 0;}
	useNum = seedNum;
	seedNum = seedNum + 1;
	setTimeout('prepNum(seedNum)',15000);
	getPara(useNum);
}
