<!--
/*
   Eric Jarvies, Lewis Sellers, Giuseppe Lombardo,
          Kurt Anderson, and David Medinets.
*/
var id,pause=0,position=0;
function imascroller() {
        // variables declaration
        var i,k,msg=" ** NEWS ** Elena has now gone to Reading and we are no longer together ** NEWS ** New Pluralist Speaks weblog";

        // increase msg
        k=(150/msg.length)+1;
        for(i=0;i<=k;i++) msg+=" "+msg;

        // show it to the window
        document.form2.imascroller.value=msg.substring(position,position+250);

        // set new position
        if(position++==250) position=0;

        // repeat at entered speed
        id=setTimeout("imascroller()",100); }

//  -->

