
<!--
/* Random Testimonial Generation */

function random_testimonial(){
	
	var myquote=new Array()
	
	myquote[1]="We found working with Cirrion to be a delightful experience. They provided a first class and professional service and delivered the 'wow factor' as promised. I wouldn't have any hesitation in recommending Cirrion - they are charming and professional people to do business with and we hope we have an opportunity to work with them again."
	myquote[2]="I can only commend you for the unwavering professionalism and calmness throughout this time."
	myquote[3]="A personal thank you for the enormous effort you put into organising the events at this year's conference - the feedback I have had has been universally positive."
	myquote[4]="Without exception, everyone at our table was extremely complimentary about the well thought out and planned event (Tom Jones at Castle Howard) and in particular the eye for detail."
	myquote[5]="What a HUGE success the fun day turned out to be, from games to BBQ everything went like clockwork and to top it all we couldn't have asked for a more perfect day weather wise."
	myquote[6]="We wanted to thank you all for a brilliant night on Saturday at Castle Howard for the Tom Jones concert. You made it really special for everyone."


	var mycredit=new Array()
	
	mycredit[1]="Coca Cola"
	mycredit[2]="Deloitte"
	mycredit[3]="BAE Systems"
	mycredit[4]="OPUS Appointments"
	mycredit[5]="OCTAGON CSI"
	mycredit[6]="Joe Elliott - Def Leppard"
	
	var ry=Math.floor(Math.random()*myquote.length)
	
	if (ry==0)
		ry=1
		document.write('<div class="testimonials"><p>'+myquote[ry]+'<img src="images/quote-right.png" alt="" width="22" height="35" border="0" class="quote-right" /></p><span class="quote-credit">'+mycredit[ry]+'</span></div>' )
	}

random_testimonial()

//-->

