<!-- Begin
var message = new Array();
// Set your messages below between the speechmarks -- follow the pattern.
// To add more messages, just add more elements to the array.
message[0] = "";
message[1] = "";
message[2] = "";
message[3] = "";
message[4] = "";
message[5] = "";
message[6] = "";

// 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 > 25) { s = 1;}
// you can fiddle with the patterns here...
if (s == 1)  { document.title = 'G.m. phoenix m.h.c '+T+' -----'; }
if (s == 2)  { document.title = 'G.M. phoenix m.h.c '+T+' -----'; }
if (s == 3)  { document.title = 'G.M. Phoenix m.h.c '+T+' -----'; }
if (s == 4)  { document.title = 'G.M. PHoenix m.h.c '+T+' -----'; }
if (s == 5)  { document.title = 'G.M. PHOenix m.h.c '+T+' -----'; }
if (s == 6)  { document.title = 'G.M. PHOEnix m.h.c '+T+' -----'; }
if (s == 7)  { document.title = 'G.M. PHOENix m.h.c '+T+' -----'; }
if (s == 8)  { document.title = 'G.M. PHOENIx m.h.c '+T+' -----'; }
if (s == 9)  { document.title = 'G.M. PHOENIX m.h.c '+T+' -----'; }
if (s == 10) { document.title = 'G.M. PHOENIX M.h.c '+T+' -----'; }
if (s == 11) { document.title = 'G.M. PHOENIX M.H.c '+T+' -----'; }
if (s == 12) { document.title = 'G.M. PHOENIX M.H.C '+T+' -----'; }
if (s == 13) { document.title = 'g.M. PHOENIX M.H.C '+T+' -----'; }
if (s == 14) { document.title = 'g.M. PHOENIX M.H.C '+T+' -----'; }
if (s == 15) { document.title = 'g.m. PHOENIX M.H.C '+T+' -----'; }
if (s == 16) { document.title = 'g.m. pHOENIX M.H.C '+T+' -----'; }
if (s == 17) { document.title = 'g.m. phOENIX M.H.C '+T+' -----'; }
if (s == 18) { document.title = 'g.m. phoENIX M.H.C '+T+' -----'; }
if (s == 19) { document.title = 'g.m. phoeNIX M.H.C '+T+' -----'; }
if (s == 20) { document.title = 'g.m. phoenIX M.H.C '+T+' -----'; }
if (s == 21) { document.title = 'g.m. phoeniX M.H.C '+T+' -----'; }
if (s == 22) { document.title = 'g.m. phoenix M.H.C '+T+' -----'; }
if (s == 23) { document.title = 'g.m. phoenix m.H.C '+T+' -----'; }
if (s == 24) { document.title = 'g.m. phoenix m.h.C '+T+' -----'; }
if (s == 25) { document.title = 'g.m. phoenix m.h.c '+T+' -----'; }
if (C < (25 * reps)) {
sT = setTimeout("A()", speed);
C++;
}
else {
C = 0;
s = 0;
mC++;
if(mC > p - 1) mC = 0;
sT = null;
doTheThing();
   }
}
doTheThing();
//  End -->

