var msgArray = new Array(
"\"It was really great! Such a beautiful colour. I'm addicted to spray tans and this is the best I've had by far.\" <br> <I>Elizabeth Renkert, Managing Editor Madison & Editor Your Body</I><br>-Amber Sun Spray Tan" ,
"\"It was really great - very natural. The spray I had was Amber Sun.\" <br> <I>Rachael Mannell, Beauty Editor Cleo</I><br>-Amber Sun Spray Tan" ,
"\"Colour is a nice golden tone, very happy.\" <br> <I>Danielle De Gail, Deputy Editor Shop Til You Drop</I><br>-Amber Sun Spray Tan" ,
"\"I loved it! It looks so great..Thanks so much! It's the best spray tan I've had done. Really impressed with it!.\" <br> <I>Fiona Tomarchio, Deputy Editor, New Weekly</I><br>-Amber Sun Spray Tan" ,
"\"The colour was a lovely deep bronze and seemed to suit my colouring really well but didn't give me that too tanned look. I was very impressed with the colour and the longevity of the tan as well.\" <br> <I>Sara McLean, Editorial Coordinator Shop Til You Drop</I><br>-Amber Sun Spray Tan" ,
"\"I was a Spray Tan virgin but now i'm obsessed and I want to be sprayed weekly!.\" <br> <I>says Grazia Staff Member Christine</I><br>-Amber Sun Spray Tan" ,
"\"I had two coats , it dried instantly and there was no after smell once I washed it off. It was quite dark but very naturaland faded gradually. I got lots of compliments.\"<br>-Amber Sun Spray Tan" 
);
var speed = 20;
var cdel = 5000;
var maxfont = 15;

// Expanding and shrinking text banner Javascript
// copyright 24th July 2005, by Stephen Chapman http://javascript.about.com
// permission to use this Javascript on your web page is granted
// provided that this copyright notice is included
var x = y = 0;
var msg;
function start() 
{
    bnr('1');
}
function bnr(dir)
{
    if (dir) 
    {
        msg = msgArray[y];
        
        if (x < maxfont) 
        {
            x++;setTimeout("bnr(1)",speed);
        }
        else setTimeout("bnr(0)",cdel);
    } 
    else 
    {
        if (x > 1) 
        {
            x--;
            setTimeout("bnr(0)",speed);
        }
        else 
        {
            setTimeout("bnr(1)",10);
            y++;
            
            if (y>=msgArray.length) y=0;
        }
    }
    document.getElementById('btx').innerHTML = msg;
    
    btx.style.fontSize=x+'px'   
}

    window.onload = start;
                  