/*
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="centre">Welcome to Shelvey.com</div>';
	       	TS_message[1] = '<div align="centre">Dedicated to the surname Shelvey</div>';
			TS_message[2] = '<div align="centre">If you have information or comments...</div>';	
			TS_message[3] = '<div align="centre">Please email me (address below)</A></div>';
			TS_message[4] = '<div align="centre">I hope you enjoy the site</A></div>';
			TS_message[5] = '<div align="centre">Rob Shelvey, Kent, England.</A></div>';			
//2) Configure fader width and colors:
             var TS_scrollwidth=400      //configure fader width
		var TS_colorFG = 0x000099;	// Text color
		var TS_colorBG = 0xFFFFFF;  //bgColor
             // uncomment any value you wanted to change
		var TS_ymax    = 40;			// How many pixel to move
		var TS_ystep   = -1;			// 1 or -1 only (Scroll direction)
		var TS_speed   = 70;			// The smaller the value the faster
		//var TS_pause   = 800;			// Pause time(milisecond) between messages
		var TS_fadestep= 50;			// Steps to fade in and out
             if (document.all)
             document.write('<style>#containerarea{width:'+TS_scrollwidth+'}</style>')