
// to use place this line at the bottom of the web page
// <script>scrollIn(); </script>

var message = "Lone Tree Bullet Company - manufacturer of cast lead bullets";

var position = 1;

function scrollIn()
{

    if(arguments.length == 1)
    {
        message = arguments[0];
    }

    window.status = message.substring(0, position);
    if(position >= message.length)
    {
        position = 1;
        window.setTimeout("scrollOut()",300);
    } 
    else
    {
        position++;
        window.setTimeout("scrollIn()",50);
    }
}

function scrollOut()
{
    window.status= message.substring(position, message.length);
    if (position >= message.length)
    {
        position = 1;
        window.setTimeout("scrollIn()", 50);
    }
    else
    {
        position++;
        window.setTimeout("scrollOut()", 50);
    }
}
