
/*
Dynamic Fader Script (updated: 00/08/05)
Created and submitted by Nicholas Poh (hwinmain@yahoo.com) to Dynamicdrive.com
Key modifications by Dynamic Drive for stability/ efficiency in NS
For full source code, usage terms, and 100s more scripts, visit http://dynamicdrive.com
*/
//1) Configure messages:
		var TS_message = new Array();
            TS_message[0] = '<div align="left">Welcome</div>';
	        TS_message[1] = '<div align="left">We now have a <A HREF="http://troop337.org/FlamingMarshmallows.html" target="337Page">Venture Patrol!</A></div>';
		    TS_message[2] = '<div align="left">Contact Our <A HREF="http://troop337.org/337Adults.html" target="337Page">Scoutmaster</A> to Join Our Troop</div>';

//2) Configure fader width and colors:
        var TS_scrollwidth= 150     // Fader width
		var TS_colorFG = 0x000000;	// Text color
		var TS_colorBG = 0x99ccff;  // Background color
// uncomment any value you want to change
		var TS_ystep   = -1;		// 1 or -1 only (Scroll direction)
		var TS_ymax    = 100;		// How many pixels to move (i.e., height of scrollbox)
		var TS_speed   = 14;		// The smaller the value the faster
		var TS_pause   = 300;		// Pause time(milisecond) between messages
		var TS_fadestep= 20;		// Steps to fade in and out

        if (document.all)
        document.write('<style>#containerarea{width:'+TS_scrollwidth+'}</style>')

