/******************************************************************* 
* File    : mynews2.js
* Created : 2002/02/16 
* 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:12px;");
	myScroller.setBgImage("images/bg3.jpg");
	myScroller.setShowTime(5);

	myScroller.addMessage("This is a news scroller...<br>\
					The display time for messages in this scroller has been set to 5 seconds");
	myScroller.addMessage("Messages scroll or fade into view and then scroll or fade out (no fade in NS4)");
	myScroller.addMessage("You can add links to your messages. Visit <A HREF='http://www.javascript-fx.com'>JavaScript-FX.com</A>. The best scripts on the planet.");
	myScroller.addMessage("<CENTER>You can have images or image links in the scroller<br><A HREF='http://www.javascript-fx.com' TARGET='_blank'><IMAGE src='images/javascriptfx.gif' border='0'></A></CENTER>");
	myScroller.addMessage("You can configure the bgImage, bgColor and you can use a STYLE reference to configure the font color/size/face");

