<!--
var message = new Array();
// Set your messages below -- follow the pattern.
// To add more messages, just add more elements to the array.
message[0] = "";
message[1] = "";
// Set the number of repetitions (how many times the arrow
// cycle repeats with each message).
var reps = 2;
var speed = 130; // 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 > 14) { s = 1;}
// you can fiddle with the patterns here...
if (s == 1) { document.title = '|H2^8-------|';}
if (s == 2) { document.title = '|-H2^8------|';}
if (s == 3) { document.title = '|--H2^8-----|';}
if (s == 4) { document.title = '|---H2^8----|';}
if (s == 5) { document.title = '|----H2^8---|';}
if (s == 6) { document.title = '|-----H2^8--|';}
if (s == 7) { document.title = '|------H2^8-|';}
if (s == 8) { document.title = '|-------H2!8|';}
if (s == 9) { document.title = '|------H2!8-|';}
if (s == 10) { document.title = '|-----H2!8--|';}
if (s == 11) { document.title = '|----H2!8---|';}
if (s == 12) { document.title = '|---H2!8----|';}
if (s == 13) { document.title = '|--H2!8-----|';}
if (s == 14) { document.title = '|-H2!8------|';}
if (C < (14 * reps)) {
sT = setTimeout("A()", speed);
C++;
}
else {
C = 0;
s = 0;
mC++;
if(mC > p - 1) mC = 0;
sT = null;
doTheThing();
}
}
doTheThing();
// -->