var which = 0;
	function rotateevery(sec)
	{
		var Quotation=new Array()

		Quotation[0] = '<p align="center" class="highlight3">Are you clear about<br /><strong>what&rsquo;s next</strong><br />for you and your markets?</p>';
		Quotation[1] = '<p align="center" class="highlight3">What new<br />strategies will <strong>accelerate</strong><br />your performance?</p>';
		Quotation[2] = '<p align="center" class="highlight3">How far and<br />how fast do you<br /><strong> need to grow</strong><br />today and tomorrow?</p>';
		Quotation[3] = '<p align="center" class="highlight3">Do you know the <strong>opportunities<br /></strong> in all your markets?<br /></p>';
	
		var total = 4;
		document.getElementById('textrotator').innerHTML = Quotation[which];
		which++;
		if (which==total) { which = 0 }
		setTimeout('rotateevery('+sec+')', sec*1000);
	}

