var quoteArray = new Array("\"Made in Mexico Born in USA\"","\"Beaner Please\"","\"Bean There Done That\"","\"To Bean Or Not To Bean is The ?\"","\"What can a Bean do For You?  Everything!\"","\"Proud to be a Human Bean\"","\"I Wish I Where An Oskarmyer Beaner\"");

var tempIndex = 0;
var col1=255,col2=255,col3=255;

function fade(index) { 
	var tempId = document.getElementById('quote');
	tempId.style.color="rgb(" + col1 + "," + col2 + "," + col3 + ")";
	col1-=5; 
	col2-=22;
	col3-=23;
	tempId.innerHTML = quoteArray[index];
	if(col1>179) 
		setTimeout('fade('+index+')', 40); 
	else{
		col1=255;
		col2=255;
		col3=255;
		setTimeout("startQuotes("+(index+1)+")",4000);
	}	
}

function startQuotes(index){
	var tempId = document.getElementById('quote');
	tempId = "";
    if(index == 7)
    	tempIndex = 0;	  
	else
		tempIndex = index;
	fade(tempIndex);			
	
}