var Colors = new Array;
Colors[ 0] = "82c0a0";
Colors[ 1] = "82c0a0";
Colors[ 2] = "82c0a0";
Colors[ 3] = "82c0a0";
Colors[ 4] = "7fc0a0";
Colors[ 5] = "75b0a0";
Colors[ 6] = "6fb090";
Colors[ 7] = "65b090";
Colors[ 8] = "5fa090";
Colors[ 9] = "55a090";
Colors[10] = "4fa080";
Colors[11] = "459080";
Colors[12] = "3f9080";
Colors[13] = "359080";
Colors[14] = "2f8070";
Colors[15] = "258070";
Colors[16] = "1f8070";
Colors[17] = "157070";
Colors[18] = "0f7060";
Colors[19] = "057060";
Colors[20] = "006060";
Colors[21] = "006060";

var Headlines = new Array;
Headlines[ 0] = "Do You Have an Interactive, Up-To-Date Web Site?<br><br>Or Just a List of Boats on Someone Else's?";
Headlines[ 1] = "Take Control of Your Web Site!<br><br>Save Time and Money.";
Headlines[ 2] = "Email News to Customers and Prospects.<br><br>With Just a Click of the Mouse.";
Headlines[ 3] = "The Easiest Web-Building Tool...<br><br>Designed By and For Boat Dealers.";
Headlines[ 4] = "Boat Buyers Are Looking For You on the Web.<br><br>Will You Be There?";
Headlines[ 5] = "Take Your Web Site to the Boat Shows...<br><br>Without an Internet Connection!";

var RotateID = new Number( 0 );
var FadeID   = new Number( 0 );
var FadeTime = new Number( 0 );
var CurColor = 0;
var CurHeadline = 0;
var FadeIn = true;

function RotateHeadline() {
	var TD = document.getElementById( "rotate" );
	if( FadeIn ) {
		if( CurColor == 0 ) {
			TD.innerHTML = Headlines[CurHeadline];
			if( ++CurHeadline == Headlines.length ) {
				CurHeadline = 0;
			}
		}
		if( ++CurColor == Colors.length ) {
			FadeIn = false;
		}
		TD.style.color = Colors[CurColor];

	} else {
		if( --CurColor == 0 ) {
			FadeIn = true;
		}
		TD.style.color = Colors[CurColor];
	}
	RotateID = setTimeout( "RotateHeadline()" , 100 );
}

