<!-- Start of scroller script
    var scrollCounter = 0;
    var scrollText    = "REDEFINING   OPPORTUNITIES..............";
    var scrollDelay   =100; //controlling the speed of the text

    var i = 0;
    while (i ++ < 140)
	scrollText = " " + scrollText;

    function Scroller()
    {
	window.status = scrollText.substring(scrollCounter++, 
			    scrollText.length);
	if (scrollCounter == scrollText.length)   // for repeatation of text 
	    scrollCounter = 0;
	setTimeout("Scroller()", scrollDelay);
    }

    
    // End of scroller script -->
