function rotateEvery(sec)
{
	var Quotation=new Array()

	// QUOTATIONS
	Quotation[0] = '<p>We would like to thank PAUSE Designs and Concepts for the exceptional service!  Our invitations really speak of  ... [<a href="testimonials.html">read more</a>]</p>';
	Quotation[1] = '<p>Living in Canada and planning for a wedding in Boracay made me a bit nervous using a supplier in Manila to create ... [<a href="testimonials.html">read more</a>]</p>';
	Quotation[2] = '<p>I found Pause on the net by mere chance: what a wonderful surprise! Pause really met my expectations ... [<a href="testimonials.html">read more</a></p>';
	Quotation[3] = '<p>The people behind PAUSE know customer service by heart. They certainly run that extra mile to deliver what they promised ... [<a href="testimonials.html">read more</a>]</p>';
	Quotation[4] = '<p>At PAUSE Designs and Concepts they make sure that their clients get the design they want. Smooth and ... [<a href="testimonials.html">read more</a>]</p>';

	var which = Math.round(Math.random()*(Quotation.length - 1));
	document.getElementById('textrotator').innerHTML = Quotation[which];
	
	setTimeout('rotateEvery('+sec+')', sec*1000);
}