			var seconds     = 6;
			var oldImageNum = 1;
			var slideCount  = 7;
			var highLiteOff = '#5A1E64';
			var highLiteOn  = '#EFEFEF';

			function ShowSlide( newImageNum )
				{
				document.getElementById( 'SLIDE' +  oldImageNum ).style.display = 'none';
				document.getElementById( 'SLIDE' +  newImageNum ).style.display = 'block';

				document.getElementById( 'a' + oldImageNum ).style.color = highLiteOff;
				document.getElementById( 'a' + newImageNum ).style.color = highLiteOn;

				oldImageNum = newImageNum;
				}

				
			function SlideShow( i ) 
				{
				document.getElementById( 'PLAY' ).style.display = 'none';

				milliseconds = seconds * 1000;

				if( i == -1 )
					i = 0;
				else
					ShowSlide( i );

				i++;
				
				if ( i > slideCount ) i = 1;
				
				timer = setTimeout( 'SlideShow( ' + i + ' )' , milliseconds );

				}


			function StopAndShow( i )
				{
				clearTimeout( timer );
				
				document.getElementById( 'PLAY' ).style.display = 'block';

				ShowSlide( i );
				}

	
