var message = new Array();
// Set your messages below -- follows the scrolling message.
// To add more messages, just add more elements to the array.
message[0] = "PO Box 3, Elizabeth, South Australia 5112";
message[1] = "Succulent hams, delicate smoked salmon, hand made chocolates";
message[2] = "Keep in touch with your friends in the U.K.";
message[3] = "24 hour flower delivery to the U.K.";
message[4] = "Send that special thought for any occasion";
message[5] = "Christmas Specials";
message[6] = "Friendly Expert Advice";

// Set the number of repetitions (how many times the scroll
// cycle repeats with each message).
var reps = 2;
var speed = 400;  // 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 > 24) { s = 1;}
// you can fiddle with the patterns here...
if (s == 1) { document.title = 'Postal_Gift_Service...'+'  ----- '+T; }
if (s == 2) { document.title = 'ostal_Gift_Service...P'+'  ----- '+T; }
if (s == 3) { document.title = 'stal_Gift_Service...Po'+'  ----- '+T; }
if (s == 4) { document.title = 'tal_Gift_Service...Pos'+'  ----- '+T; }
if (s == 5) { document.title = 'al_Gift_Service...Post'+'  ----- '+T; }
if (s == 6) { document.title = 'l_Gift_Service...Posta'+'  ----- '+T; }
if (s == 7) { document.title = '_Gift_Service...Postal'+'  ----- '+T; }
if (s == 8) { document.title = 'Gift_Service...Postal_'+'  ----- '+T; }
if (s == 9) { document.title = 'ift_Service...Postal_G'+'  ----- '+T; }
if (s == 10) { document.title = 'ft_Service...Postal_Gi'+'  ----- '+T; }
if (s == 11) { document.title = 't_Service...Postal_Gif'+'  ----- '+T; }
if (s == 12) { document.title = '_Service...Postal_Gift'+'  ----- '+T; }
if (s == 13) { document.title = 'Service...Postal_Gift_'+'  ----- '+T; }
if (s == 14) { document.title = 'ervice...Postal_Gift_S'+'  ----- '+T; }
if (s == 15) { document.title = 'rvice...Postal_Gift_Se'+'  ----- '+T; }
if (s == 16) { document.title = 'vice...Postal_Gift_Ser'+'  ----- '+T; }
if (s == 17) { document.title = 'ice...Postal_Gift_Serv'+'  ----- '+T; }
if (s == 18) { document.title = 'ce...Postal_Gift_Servi'+'  ----- '+T; }
if (s == 19) { document.title = 'e...Postal_Gift_Servic'+'  ----- '+T; }
if (s == 20) { document.title = '...Postal_Gift_Service'+'  ----- '+T; }
if (s == 21) { document.title = '..Postal_Gift_Service.'+'  ----- '+T; }
if (s == 22) { document.title = '.Postal_Gift_Service..'+'  ----- '+T; }
if (s == 23) { document.title = 'Postal_Gift_Service...'+'  ----- '+T; }
if (s == 24) { document.title = 'Postal_Gift_Service...'+'  ----- '+T; }

if (C < (24 * reps)) {
sT = setTimeout("A()", speed);
C++;
}
else {
C = 0;
s = 0;
mC++;
if(mC > p - 1) mC = 0;
sT = null;
doTheThing();
   }
}
doTheThing();