  var adTxt = new Array(
		'<p style="font-style: italic">"Effective communication is crucial for leadership excellence and organizational success."<br />-- Cal Downs, Owner</p>',
		'<p style="font-style: italic">"Dr. Downs\' expertise is valued and he has been and continues to be a trusted professional counselor.  I would call him anytime I need help."<br /><font style="font-size:smaller">-- Douglas R. Newberry, Deputy to the Commander, USArmy Tank-Automotive and Armaments Command</font></p>',
		'<p style="font-style: italic">"Cal helped us train our binoculars on how to succeed in a global environment.  Many thanks to Cal for sharing his wisdom in a time of confusion."<br /><font style="font-size:smaller">-- Kip Rosner, VP International HR, Butler Manufacturing, Kansas City</font></p>',
		'<p style="font-style: italic"><font style="text-decoration:underline">We Deliver:</font><br /> &nbsp;*Organizational strategies can be reliably based on the information we generate for you.<br /> &nbsp;*Benchmarks can be set for future development.</p>',
		'<p style="font-style: italic"><font style="text-decoration:underline">We Deliver:</font><br /> &nbsp;*Feedback about strengths and weaknesses lets you strengthen your organizational culture.<br /> &nbsp;*Assessing communication leads to improved interpersonal and team relations.</p>',	
		'<p style="font-style: italic"><font style="text-decoration:underline">We Deliver:</font><br /> &nbsp;*Interunit communication can be strengthened and coordinated.<br /> &nbsp;*Solutions are sensible and practical.</p>'
        );

  function adPrime() {
        document.getElementById('testimonials').innerHTML='<h2>'+adTxt[0]+'</h2>';
  }

  var x = 1;
  function adRotate() {
        if (x == adTxt.length) {
                x = 0;
        }
        document.getElementById('testimonials').innerHTML='<h2>'+adTxt[x]+'</h2>';
        x++;
  }
  window.setInterval("adRotate()",12500);

