var ScrollText = "Housekeepers of Marin...              That Extra Touch!                          "
function SBScroll() 
{
temp = ScrollText.substring(0,1);
ScrollText += temp
ScrollText = ScrollText.substring(1,ScrollText.length);
window.status = ScrollText.substring(0,ScrollText.length);
setTimeout("SBScroll()",150);
}

