<!--
// News Scroller 2.2 - ©2003 Matthew J. Drollinger of Strong Interactive Media - www.getsim.com

// SCROLLER PARAMETERS
var scrollerwidth = 775;                    // Width (in pixels) of the scroller
var scrollerheight = 20;                    // Height (in pixels) of the scroller
var scrollerdirection = "horizontal";       // Direction of scrolling messages (vertical or horizontal)
var scrollergutter = 0;                     // Space (in pixels) on vertical or horizontal sides of scrolled text (within the scroller area)
var scrollerspeed = 3;                      // Speed of scroller (1 to 10)
var scrollerbgcolor = "";                   // Leave blank for transparent
var messagespacing = 50;                    // Amount of space (in pixels) between messages
var defaultlinktarget = "";                 // Default frame or window name for links to point to
var scrollertextalign = "left";             // Alignment of text in scroller (left or center) (vertical only)
var scrollerregtextstyle = "color:#FFFFFF; font-size:12px; font-family:Arial, Helvetica, sans-serif; text-decoration:none;";
var scrollerlinkoffstyle = "color:#FFFFFF; font-size:12px; font-family:Arial, Helvetica, sans-serif; text-decoration:none;";
var scrollerlinkovrstyle = "color:#FFFFFF; font-size:12px; font-family:Arial, Helvetica, sans-serif; text-decoration:underline;";
var transparentgifsrc = "images/blank.gif"; // Transparent gif image file URL (can be a relative or absolute URL)


// SCROLLING MESSAGE DATA
if(document.getElementById)
{
   newsMessage = new Array(); // Each element of this array is an array containing a URL, target, and message
   
   newsMessage[0] = new Array("","","");
}

//-->