// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
var message = new Array();
message[0] = " < CARIBIC > "
var reps = 2;
var speed = 2000; 
var p = message.length;
var T = "";
var C = 0;
var mC = 0;
var s = 0;
var sT = null;
if (reps < 1) reps = 1;
function doIt() {
T = message[mC];
A();
}
function A() {
s++;
if (s > 8) { s = 1;}
if (s == 1)  { document.title = '*    C A R I B I C      *'}
if (s == 2)  { document.title = '*    Civil Aircraft     *'}
if (s == 3)  { document.title = '*   for the Regular     *'}
if (s == 4)  { document.title = '*    Investigation      *'}
if (s == 5)  { document.title = '*  of the atmosphere    *'}
if (s == 6)  { document.title = '*     Based on an       *'}
if (s == 7)  { document.title = '*  Instrument Container *'}
if (s == 8)  { document.title = '*    C A R I B I C      *'}
if (C < (8 * reps)) {                                               
sT = setTimeout("A()", speed);                                       
C++;                                                                 
}                                                                    
else {                                                               
C = 0;                                                               
s = 0;                                                   
mC++;                                                    
if(mC > p - 1) mC = 0;                                   
sT = null;                                               
doIt();                                                  
   }                                                     
}                                                        
doIt();         
