



<!-- Modified:  Jim Einarson (jim.einarson@ccra-adrc.gc.ca) -->
<!-- Original:  David Sosnowski -->
<!-- Web Site:  http://www.codebelly.com -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var message = new Array();
// Set your messages you want typed into the title bar below.
// To add more messages, just add more elements to the array.
message[0] = "Check this bar often for great tips (Click on bar to pause scrolling)"; 
message[1] = "I will post information here that I feel you must know about right away.";
message[2] = "Doctors are amazed at blueberries power - deemed most antioxidant-rich food";
message[3] = "Cancer protector found to also increase lean tissue and" 
message[4] = "help you lose fat - CLA research gearing up to verify early promising results";
message[5] = "For best results while weight training keep rest intervals short -- promotes more";
message[6] = "Growth Hormone release -- helps you lose fat and keeps you younger looking";
message[7] = "Latest research shows high intensity interval training elevates metabolism by 16%";
message[8] = "whey protein alone absorbed too quickly -- Better is egg protein or casein";
message[9] = "combined with whey isolate and concentrate";
message[10] = "Upping your calcium intake helps increase fat loss by up to 69% studies show --";
message[11] = "best supplemental form is calcium citrate";
message[12] = "Calcium via supplements reduced body fat an average of 42%";
message[13] = "Calcium from dairy products produced better results -- 60% decrease on 'medium-dairy' diet";
message[14] = "and 69% fat loss decrease on 'high-dairy' diet";
message[15] = "Two highest calcium containing foods are cottage cheese and collard greens (raw is best)";


// Set the number of repetitions (how many times a given message is typed out
// before moving onto the next message).
var reps = 1;
var speed = 60;// Set the overall typing speed (larger number = slower action).
var hold = 35 // set the length of time to display the whole phrase before retyping (larger number = longer)

// DO NOT EDIT BELOW THIS LINE.
var p = message.length;
var q = 0;
var r = 0;
var C = 0;
var mC = 0;
var s = 0;
var sT = null;

if (reps < 1) {
reps = 1;
}
function setMessage() {
typing = message[mC];
q = typing.length;
r = q + hold;
typeMessage();
}
function typeMessage() {
if (s > r) {
s = 0;
}
if (s > q) {
document.title = '|- '+ typing +' - - -';
}
else {
document.title = '|- '+ typing.substr(0,s)+' - - -';
}
if (C < (r * reps)) {
sT = setTimeout("typeMessage()", speed);
C++;
s++;
}
else {
C = 0;
s = 0;
mC++;
if(mC > p - 1) {mC = 0;}
sT = null;
setMessage();
   }
}
setMessage();
//  End -->


