      <!-- begin
      var max=0;
      function textlist()
      {
      max=textlist.arguments.length;
      for (i=0; i<max; i++)
      this[i]=textlist.arguments[i];
      }
      tl=new textlist
      ( 
       "Welcome to Fairview Elementary....",   
	"Hello. I hope you are enjoying Winter.",
	"We haven't seen any new snow yet.",
	"But we remember it well",
	 and are looking forward to it again some day.",
	"Enrichment Clusters will still happen on Fridays",
	"Muffins for Moms was a great success",
	"almost as good as Doughnuts for Dads.",
	"Thank you to our PTA",
	"for pulling everything together.",
	"New science curriculum will begin this year,",
	"Our teachers have been taking science training",
	"Check out the FOSS Science website for more info.",	
	"They have also been working hard on the reading",
	"and writing continuums, with the help of,"
	"Bonnie Campbell Hill.",
	"Great things will be coming out of Fairview soon",
	"Your students!",

	""



      );
      var x=0; pos=0;
      var l=tl[0].length;
      function textticker()
      {
        document.tickform.tickfield.value=tl[x].substring(0,pos)+"_";
        if(pos++==l) { pos=0; setTimeout("textticker()",2000); x++;
        if(x==max) x=0; l=tl[x].length; } else
        setTimeout("textticker()",50);
      }
      // end -->