var Count = 0;
var Text = "                  Welcome to the McQueryClan website!                      Meet our family ~                        Visit my favorite books and authors pages!                         ~                 Homeschool Links            ~                   KLM Design!                        ~                      NEVER FORGET to praise the Lord for HE IS GOOD!                                                                                                                                                                                                                                                                                                      ";
scroll();
function scroll() {
window.status=Text.substring (Count, Text.length) + Text.substring (0, Count)
if (Count<Text.length)
    Count++;
    else 
    Count=0;
    setTimeout ("scroll()", 100);
             }

