<!-- Begin

var message = new Array() // leave this as is

message[0]="Welcome to 777-Health Google-powered search ";
message[1]="Use the most specific term ";
message[2]="to get the least amount ";
message[3]="of pages after the search";
message[4]="For example - use 'fluoride'";
message[5]="instead of poison to get only";
message[6]="the fluoride pages.";
message[7]="Use 'depression' instead of";
message[8]="'mental health' in order to get";
message[9]="only the depression pages."
message[10]="OK!"

// Set the number of repetitions (how many times the arrow
// cycle repeats with each message).

var reps = 2

// Set the overall speed (larger number = slower action).

var speed = 200

// 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>8){s=1}
// you can fiddle with the patterns here...
if(s==1){document.title='||||||====||| '+T+' -----'}
if(s==2){document.title='|||=|||===||| '+T+' -----'}
if(s==3){document.title='|||==|||==||| '+T+' -----'}
if(s==4){document.title='|||===|||=||| '+T+' -----'}
if(s==5){document.title='|||====|||||| '+T+' -----'}
if(s==6){document.title='|||===|||=||| '+T+' -----'}
if(s==7){document.title='|||==|||==||| '+T+' -----'}
if(s==8){document.title='|||=|||===||| '+T+' -----'}
if(C<(8*reps)){
sT=setTimeout("A()",speed);
C++
}else{
C=0;
s=0;
mC++
if(mC>p-1)mC=0;
sT=null;
doTheThing();}}
doTheThing();

// End -->

