var quoteArray = new Array(25);
quoteArray[0] = '<br /><br />We cannot direct the wind, but we can adjust the sails.<br /> -- Quote attributed to Bertha Calloway';

quoteArray[1] = '<br /><br />Without goals, and plans to reach them, you are like a ship that has set sail with no destination.<br /> -- Quote attributed to Fitzhugh Dodson';

quoteArray[2] = '<br /><br />The wonder is always new that any sane man can be a sailor.<br /> -- Quote attributed to Ralph Waldo Emerson';

quoteArray[3] = '<br /><br />Man cannot discover new oceans unless he has the courage to lose sight of the shore.<br /> -- Quote attributed to Andre Gide';

quoteArray[4] = '<br /><br />Thought is the wind and knowledge the sail.<br /> -- Quote attributed to David Hare';

quoteArray[5] = '<br /><br />The least movement is of importance to all nature. The entire ocean is affected by a pebble.<br /> -- Quote attributed to Blaise Pascal';

quoteArray[6] = '<br /><br />Less judgment than wit is more sail than ballast.<br /> -- Quote attributed to William Penn';

quoteArray[7] = '<br /><br />On life\'s vast ocean diversely we sail. Reasons the card, but passion the gale.<br /> -- Quote attributed to Alexander Pope';

quoteArray[8] = '<br /><br />Only the guy who isn\'t rowing has time to rock the boat.<br /> -- Quote attributed to Saunders';

quoteArray[9] = '<br /><br />If one does not know to which port one is sailing, no wind is favorable.<br /> -- Quote attributed to Seneca';

quoteArray[10] = '<br /><br />Anyone can hold the helm when the sea is calm.<br /> -- Quote attributed to Publilius Syrus';

quoteArray[11] = '<br />He is the best sailor who can steer within the fewest points of the wind, and extract a motive power out of the greatest obstacles.<br /> -- Quote attributed to Henry David Thoreau';

quoteArray[12] = '<br /><br />The potential of the average person is like a huge ocean unsailed.<br /> -- Quote attributed to Brian Tracy';

quoteArray[13] = 'Twenty years from now you will be more disappointed by the things that you didn\'t do than by the ones you did do. So throw off the bowlines. Sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover.<br /> -- Quote attributed to Mark Twain';

quoteArray[14] = '<br /><br />Smooth seas do not make skillful sailors.<br /> -- African Proverb';

quoteArray[15] = '<br />Our passions are the winds that propel our vessel. Our reason is the pilot that steers her. Without winds the vessel would not move and without a pilot she would be lost.<br /> -- Traditional Proverb';

quoteArray[16] = '<br /><br />Hoist your sail when the wind is fair.<br /> -- Traditional Proverb';

quoteArray[17] = '<br /><br />It never ceases to lighten my soul when I realize that through cunning and skill I have tricked the wind into moving my boat.<br /> -- Quote attributed to David Seidman';

quoteArray[18] = 'To desire and strive to be of some service to the world, to aim at doing something which shall really increase the happiness and welfare and virtue of mankind - this is a choice which is possible for all of us; and surely it is a good haven to sail for.<br /> -- Quote attributed to Henry Van Dyke';

quoteArray[19] = '<br /><br />Don\'t set sail on someone else\'s star.<br /> -- African proverb';

quoteArray[20] = '<br /><br />You are not a fully fledged sailor unless you have sailed under full sail.<br /> -- Irish proverb';

quoteArray[21] = '<br /><br />Tis the set of the sail that decides the goal, and not the storm of life.<br /> -- Quote attributed to Ella Wheeler Wilcox';

quoteArray[22] = '<br /><br />Noah was a brave man to sail in a wooden boat with two termites.<br /> -- Proverb';

quoteArray[23] = '<br /><br />Separately there was only wind, water, sail, and hull, but at my hand the four had been given purpose and direction.<br /> -- Quote attributed to Lowell Thomas';

quoteArray[24] = '<br /><br />I can\'t change the direction of the wind, but I can adjust my sails to always reach my destination.<br /> -- Quote attributed to Jimmy Dean';

quoteArray[25] = '<br /><br />The pessimist complains about the wind\; the optimist expects it to change; the realist adjusts the sails.<br /> -- Quote attributed to William Arthur Ward';

quoteArray[26] = '<br />Believe me, my young friend, there is nothing -- absolutely nothing-- half so much worth doing as simply messing-about in boats.<br /> -- Quote attributed to Kenneth Grahame -- \"The Wind in the Willows\"';

quoteArray[27] = '<br /><br />To be at one with the wind is to be at home in the world.<br /> -- Quote attributed to Richard Bode';

quoteArray[28] = '<br /><br />No one likes an ugly boat, however of cheap or fast.<br /> -- Quote attributed to Roger Duncan';

quoteArray[29] = '<br /><br />Who can feel poor when the sails are full and the spirit is full?<br /> -- Quote attributed to Herb Payson';

quoteArray[30] = '<br /><br />Wisdom sails with wind and time.<br /> -- Quote attributed to John Florio';

quoteArray[31] = '<br /><br />Success soon palls. The joyous time is when the breeze first strikes your sails, and the waters rustle under your bow.<br /> -- Quote attributed to Charles Buxton';

quoteArray[32] = '<br /><br />It is not the ship so much as the skillful sailing that assures the prosperous voyage.<br /> -- Quote attributed to George William Curtis';

quoteArray[33] = '<br />Greatness is not in where we stand, but in the direction we are moving. We must sail sometimes with the wind and sometimes against it - but sail we must and not drift, nor lie at anchor.<br /> -- Quote attributed to Sir Oliver Wendall Holmes';

var randomNumber=(Math.floor(Math.random()*34));

var tempIndex = 0;
var col1=21,col2=30,col3=66;

function fade(index) { 
	var tempId = document.getElementById('content_2');
	tempId.style.color="rgb(" + col1 + "," + col2 + "," + col3 + ")";
	col1+=5; 
	col2+=5;
	col3+=3;
	tempId.innerHTML = quoteArray[index];
	if(col1<237) 
		setTimeout('fade('+index+')', 40); 
	else{
		col1=237;
		col2=238;
		col3=222;
		setTimeout("startQuotes("+(index+1)+")",10000);
	}	
}

function startQuotes(index){
	var tempId = document.getElementById('content_2');
	tempId = "";
    if(index == 34)
    	tempIndex = 0;	  
	else
		tempIndex = index;
	col1=21;
	col2=30;
	col3=66;	
	fade(tempIndex);			
	
}