<!-- Begin
var x;
quotes = new Array
quotes[1] = "\"The country's top life coach\" <b>The Daily Mail</b>"
quotes[2] = "\"The Queen Bee of British Life Coaching\" <b>The Daily Express</b>"
quotes[3] = "\"Hugely engaging, absolutely grounded in practical common sense\" <b>The Scotsman</b>"
quotes[4] = "\"Helps you focus on your goals - and get there, fast\" <b>The Daily Telegraph</b>"
quotes[5] = "\"What she does works wonders for me\" <b>Scotland on Sunday</b>"
quotes[6] = "\"Possibly the most positive person alive\" <b>ES Magazine</b>"
quotes[7] = "\"Adviser to celebrity clients and leading politicians\" <b>The Times</b>"
quotes[8] = "\"Against all odds she gets me through an important day - pretty impressive\" <b>Time Out</b>"
quotes[9] = "\"The force behind various MPs, TV presenters and business moguls\" <b>Observer Magazine</b>"
quotes[10] = "\"This woman can change your life\" <b>Independent on Sunday</b>"
quotes[0] = "\"Possibly the most positive person alive\" <b>ES Magazine</b>"
  function doit()
  {
     var pntr = Math.round(Math.random()*10);  
     var quote = quotes[pntr];
     if (document.layers)
     {
        with (document.layers["scroll"].document)
        {
           open();
           write(quote);
           close();
        }
     }
     else
     {
        if (document.getElementById)
        {
           document.getElementById("scroll").innerHTML=quote;
        }
        else
        {
           if (document.all)
           {
           document.all["scroll"].innerHTML=quote;
           }
        }
     }
     setTimeout('doit()',5500);
  }
// End -->