/******************************************************************* 
* File    : news.js
* puropose : This file creates the news scroller and adds messages to it.
***********************************************************************/ 

	var myScroller = new JSFX.VerticalScroller();

	myScroller.setStyle("font-family: Verdana, Arial, Helvetica, sans-serif;font-size:10px;");
	myScroller.setShowTime(6);
	myScroller.addMessage("Obtain bios and pictures from the <a href='/about/fbc_staff_jpgs.htm'>STAFF DIRECTORY</a> in the About Us section.");
	myScroller.addMessage("Click on <a href='/assets/asp/ChurchSearch/ChurchSearch.asp'>CHURCH SEARCH</a> to help you locate contact information for Florida Baptist congregations.");
	myScroller.addMessage("Listen to audio prayer guides or make prayer requests in the <a href='/prayer/entry.htm'>PRAYER</a> section.");
	
	/*
	To add new messages you simply add a new line: ex: myScroller.addMessage("test"); would add a
	new scrolling news item that would say test.
	*/
