var pageTitles = new Array();
pageTitles[0]="It's a Brand New Day";
pageTitles[1]="an essential book to bond with";
pageTitles[2]="and to help your child realize";
pageTitles[3]="that all living creatures";
pageTitles[4]="of nature are in fact";
pageTitles[5]="God's gifts of love";
pageTitles[6]="to each one of us";
pageTitles[7]="This creates a seed of faith";
pageTitles[8]="for your child to build life";
pageTitles[9]="and self esteem upon";
Index=0;
Delay=2000;
function titleSwap(){
  if(Index>=pageTitles.length){
    Index=0;
  }
  document.title=pageTitles[Index];
  Index++;
  setTimeout("titleSwap();",Delay);
}
titleSwap();
