var seconds=5; /* rotate every 5 seconds */
function rotate()
{
        var Quotation=new Array()

        // QUOTATIONS
        Quotation[0] = '<blockquote><p><span>"</span>I am extremely delighted with the results and would highly recommend them to anyone needing web design.<span>"</span> <br /><br /></p></blockquote> <p><span class="author">Lisa Stedman</span>, <em><strong>Philo &amp; Honey</strong></em></p>'; 
        Quotation[1] = '<blockquote><p><span>"</span>I am extremely delighted with the results and would highly recommend them to anyone needing web design.<span>"</span> <br /><br /></p></blockquote> <p><span class="author">Lisa Stedman</span>, <em><strong>Philo &amp; Honey</strong></em></p>; 
        Quotation[2] = '<blockquote><p><span>"</span>I am extremely delighted with the results and would highly recommend them to anyone needing web design.<span>"</span> <br /><br /></p></blockquote> <p><span class="author">Lisa Stedman</span>, <em><strong>Philo &amp; Honey</strong></em></p>'; 

        var which = Math.round(Math.random()*(Quotation.length - 1));         
		document.getElementById('textrotator').innerHTML = Quotation[which];

}
function start()
{
  setInterval("rotate()",seconds*1000);
}
