/*
	CHRISTMAS CONNECTIONS JAVASCRIPT
	CREATED: 24.02.07
	MODIFIED: 26.09.07
	AUTHOR: ANDY FIELD
*/

/* QUOTE GENERATOR ********************************************************/

	var tickercontents=new Array()
	tickercontents[0]='<p>All marvelous, really well organised and we all thoroughly enjoyed it!<\/p>'
	tickercontents[1]='<p>Thank you for a great day.<\/p>'
	tickercontents[2]='<p>Cannot improve in my opinion, everyone thoroughly enjoyed the event, we\'ll be in touch for our next event.<\/p>'
	tickercontents[3]='<p>Everyone in the party said it was one of the best organised weekends they had been on. Thanks for helping out.<\/p>'
	tickercontents[4]='<p>Service provided was excellent.<\/p>'
	tickercontents[5]='<p>Very helpful.  Especially considering the time timeframe.<\/p>'

	var tickdelay=5000

	var currentmessage=0

	function changetickercontent(){
	if (document.layers){
	document.statement.document.tickernssub.document.write(tickercontents[currentmessage])
	document.statement.document.tickernssub.document.close()
	}
	else
	crosstick.innerHTML=tickercontents[currentmessage]

	if (currentmessage==tickercontents.length-1) currentmessage=0
	else currentmessage++
	setTimeout("changetickercontent()",tickdelay)
	}

	function start_ticking(){
	if (document.layers)
	document.statement.visibility="show"
	else
	crosstick=document.getElementById? document.getElementById("quotes") : document.all.statement
	changetickercontent()
	}

	//if (document.all||document.getElementById)
	//document.write('<blockquote id="quotes"> </blockquote>')