<!-- Start of scroller script
var scrollCounter = 0;
var scrollText    = "::.. WELCOME to the Moratu Maha Vidyalaya ..::";
var scrollDelay   = 100;
var i = 0;
while (i ++ < 135)
scrollText = " " + scrollText;
function Scroller()
{window.status = scrollText.substring(scrollCounter++, 
scrollText.length);
if (scrollCounter == scrollText.length) 
scrollCounter = 0;
setTimeout("Scroller()", scrollDelay);}
Scroller();
// End of scroller script -->
