// beta test release... var backColor = new Array(); // Set the overall speed (larger number = slower action).var dwellTime = 1500; // Set the speed (in milliseconds).// Enter the colors you wish to use. The final// backColor[12] should be the fixed color of the page.backColor[0]  = '#000000';backColor[1]  = '#FF009C';backColor[2]  = '#63FFCE';backColor[3]  = '#FFFF00';backColor[4]  = '#00FF00';backColor[5]  = '#CE009C';backColor[6]  = '#FF0000';backColor[7]  = '#0031CE';backColor[8]  = '#FF6300';backColor[9]  = '#FFFF00';backColor[10]  = '#848400';backColor[11]  = '#636363';backColor[12]  = '#FF639C';// Do not edit below this line.//-----------------------------function flashBG(whichColor){document.bgColor = backColor[whichColor];}var t = null;var d = dwellTime;//  Begin -->// Set the number of repetitions (how many times the arrow// cycle repeats with each message).var reps = 3;//var speed = 500;  var p = d*4;var C = 0;var mC = 0;var s = 0;var sT = null;if (reps < 1) reps = 1;function doTheThing() {reflashBG();}function reflashBG() {s++;if (s > 5) { s = 1;}if (s == 1) { t = setTimeout('flashBG(0)',(d-d)); }if (s == 2) { t = setTimeout('flashBG(1)',(d)); }if (s == 3) { t = setTimeout('flashBG(2)',(d*2)); }if (s == 4) { t = setTimeout('flashBG(3)',(d*3)); }if (s == 5) { t = setTimeout('flashBG(4)',(d*4)); }if (s == 6) { t = setTimeout('flashBG(5)',(d*5)); }if (s == 7) { t = setTimeout('flashBG(6)',(d*6)); }if (s == 8) { t = setTimeout('flashBG(7)',(d*7)); }if (s == 9) { t = setTimeout('flashBG(8)',(d*8)); }if (s == 10) { t = setTimeout('flashBG(9)',(d*9)); }if (s == 11) { t = setTimeout('flashBG(10)',(d*10)); }if (s == 12) { t = setTimeout('flashBG(11)',(d*11)); }if (s == 13) { t = setTimeout('flashBG(12)',(d*12)); }if (s == 14) { t = setTimeout('flashBG(13)',(d*13)); }if (C < (9 * reps)) {sT = setTimeout("reflashBG()", dwellTime);C++;}else {C = 0;s = 0;mC++;if(mC > p - 1) mC = 0;sT = null;doTheThing();   }}//doTheThing();//  End -->