var message = new Array();
message[0] = "Welcome to firstholycommunion.co.uk";
message[1] = "Your One Stop Shop for All Your First Holy Communion & Christening  Products";
message[2] = "From Dresses to Boys Suits, All Accessories,";
message[3] = "Cards, Gifts, Invitations, Banners, Balloons";
message[4] = "Cakes, Music, and much, much more...........";
message[5] = "South West London Based open 6 days a week with full world wide mail order service";
message[6] = "We will not sell the Same Communion Dress to another Child at the same Mass";
message[7] = "020-8543-7721 ~ sales@firstholycommunion.co.uk";
message[8] = "368 Grand Drive, West Wimbledon, London SW20 9NQ, United Kingdom";
// Set the number of repetitions (how many times the arrow
// cycle repeats with each message).
var reps = 2;
var speed = 200;  // Set the overall speed (larger number = slower action).
// DO NOT EDIT BELOW THIS LINE.
var p = message.length;
var T = "";
var C = 0;
var mC = 0;
var s = 0;
var sT = null;
if (reps < 1) reps = 1;
function doTheThing() {
T = message[mC];
A();
}
function A() {
s++;
if (s > 8) { s = 1;}
// you can fiddle with the patterns here...
if (s == 1) { document.title = T;}
if (s == 2) { document.title = T;}
if (s == 3) { document.title = T;}
if (s == 4) { document.title = T;}
if (s == 5) { document.title = T;}
if (s == 6) { document.title = T;}
if (s == 7) { document.title = T;}
if (s == 8) { document.title = T;}
if (C < (8 * reps)) {
sT = setTimeout("A()", speed);
C++;
}
else {
C = 0;
s = 0;
mC++;
if(mC > p - 1) mC = 0;
sT = null;
doTheThing();
   }
}
doTheThing();
