<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com
// Edited by Doive - www.doive.net 04/06/2005 and 20/05/2009

var tags_before_clock = "";
var tags_after_clock  = "";
var speed = 4500;

function initArray() {

this.length = initArray.arguments.length;
  for (var i = 0; i < this.length; i++) {
  this[i] = initArray.arguments[i];
  }
}

var mymessage2 = new initArray("Thanks for looking after us so well. We felt very well cared for before and during our conference",
"Thank you so much for all you have done for us this weekend. It has been such a blessing",
"Thank you so much for the care and attention you have given us this week. The food was exceptional too!",
"Thank you so much for such excellent hospitality",
"The best food we have ever had at a conference.  We opted for catered rather than self-catered as we knew from previous years the food was so good",
"Staff went out of their way to help with problems to ensure we had a good time",
"We had a lovely blessed time.  Many thanks to the trustees and all those making Hebron Hall all it is",
"Hebron Hall have been very good to us through the years and we have very much appreciated it");
var x = 0;
var y = 0;

document.write('<span id="ticker">' + mymessage2[0] + '</span>');

function upticker(){ 

	if (y > mymessage2.length - 1) {
  		y = 0;
  		setTimeout("upticker()",speed);
	}
	
	else{
	
    	mymessage = mymessage2[y]; 
		y++;
   		setTimeout("upticker()",speed);

  		document.getElementById("ticker").innerHTML = tags_before_clock+mymessage+tags_after_clock;
  		
	}
} 
//-->