/*
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
*/

/*
NOTE:  
	To add new text to the scroller, just enter the text below.  Each group of text
	is defined is a uniquely numbered array.  The number of array parameters are
	automatically detected.  There is no need to specify how many lines are needed
	in any other file.
	
	PRF  02.03.2004
*/
	
	
//1) Configure messages:
		var TS_message = new Array();
			 TS_message[0] = '<div align="center"><FONT SIZE="+1"><FONT COLOR="MAGENTA">W</FONT><FONT COLOR="BLUE">E</FONT>L<FONT COLOR="RED">C</FONT><FONT COLOR="GREEN">O</FONT><FONT COLOR="ORANGE">M</FONT><FONT COLOR="CYAN">E</FONT>!</FONT><BR><BR>Here\'s the latest gossip about this site...</div>';
			 TS_message[1] = '<div align="left">After a long (18 month) hiatus from performing any updates to this site, we have finally started updating it again as of February 2004.</div>';
			 TS_message[2] = '<div align="left">We ran out of disc space at our old hosting service, which prevented us from uploading new pages or photos.</div>';
			 TS_message[3] = '<div align="left">That situation has now been corrected with the lease of a new hosting service.</div>';
			 TS_message[4] = '<div align="left">We have now successfully moved everything over to the new service and we can now start adding more photos and text.<CENTER><IMG SRC="Images/Decor01(160x26).gif" WIDTH="160" HEIGHT="26" BORDER="0"></CENTER></div>';
			 TS_message[5] = '<div align="left">New items are currently being added under the <B><I>Activities</I></B> section on the right.  This is the primary focus of upgrades at the moment.</div>';
			 TS_message[6] = '<div align="left">Many are not linked to anything yet, so please be patient and check back often.<CENTER><IMG SRC="Images/Decor02(160x37).gif" WIDTH="160" HEIGHT="37" BORDER="0"></CENTER></div>';
			 TS_message[7] = '<div align="center">IF YOU ARE NEW TO THIS SITE...</div>';
			 TS_message[8] = '<div align="left">Click on the <B><FONT COLOR="TEAL">P&amp;P Family Gallery</FONT></B> logo and then click on "<B>How To Navigate This Site</B>".</div>';
			 TS_message[9] = '<div align="left">Also check out the latest news by clicking on the "<B><FONT COLOR="RED">What\'s New</FONT></B>" button.</div>';
			 TS_message[10] = '<div align="left">Be sure to check out the <B><I>Activities</I></B> area also — it is currently being updated.<CENTER><IMG SRC="Images/Decor05(160x30).gif" WIDTH="160" HEIGHT="30" BORDER="0"></CENTER></div>';
			 TS_message[11] = '<div align="center">Thanks for visiting!<BR><IMG SRC="Images/Decor03(160x38).gif" WIDTH="160" HEIGHT="38" BORDER="0"></div>';
			 TS_message[12] = '<div align="center">End of News<BR><IMG SRC="Images/Decor04(160x13).gif" WIDTH="160" HEIGHT="13" BORDER="0"></div>';
			 TS_message[13] = '<div align="center"></div>';

//2) Configure fader width and colors:
		var TS_scrollwidth=150		// configure fader width
		var TS_colorFG = 0x0000F2;	// Text color
		var TS_colorBG = 0xFFFFFF;	// bgColor

		// uncomment any value you wanted to change
		var TS_ymax    = 180;      // How many pixel to move
		var TS_ystep   = -1;			// 1 or -1 only (Scroll direction)
		var TS_speed   = 20;			// The smaller the value the faster
		var TS_pause   = 1500;		// 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>')

// End of script
