

var init=0;
var i; 
var j;        // colors index




var colors = [13];




colors[0] = '#206B80';
colors[1] = '#307382';
colors[2] = '#387784';
colors[3] = '#458085';
colors[4] = '#538587';
colors[5] = '#619488';
colors[6] = '#709B90';
colors[7] = '#80A092';
colors[8] = '#90A694';
colors[9] = '#95B095';
colors[10] = '#A0B796';
colors[11] = '#B0C097';
colors[12] = '#CCCC99';
   




function QuoteArr(len) {
	this.length=len
}

function SigArr(len) {
	this.length=len
}

function playFade()
{

    if(init == 0) {
       i = Math.floor(Math.random() * QuoteArray.length);
       init = 1;
    }

	if (i == QuoteArray.length) 
	{
		i = 0
	}

		                     
	document.getElementById('ctl00_ContentPlaceHolder1_lblQuote').innerHTML = QuoteArray[i];
	document.getElementById('ctl00_ContentPlaceHolder1_lblSignature').innerHTML = SigArray[i];
		
    i++;
    j=13;
            
    document.getElementById('ctl00_ContentPlaceHolder1_lblQuote').style.color = "#CCCC99";
    document.getElementById('ctl00_ContentPlaceHolder1_lblSignature').style.color = "#CCCC99";
    setTimeout("fadein()",100)
   
}


function fadein()
{

    if (j == 0) {
        j = 0;
        setTimeout("fadeout()",15000)
        return;
    }
    
    j -= 1;
    
        
    document.getElementById('ctl00_ContentPlaceHolder1_lblQuote').style.color = colors[j];
    document.getElementById('ctl00_ContentPlaceHolder1_lblSignature').style.color = colors[j];
        
    setTimeout("fadein()",100);
    
}


function fadeout()
{
    if (j == 0xc) {
        playFade();
        return;
    }
    
    j += 1;
    
    document.getElementById('ctl00_ContentPlaceHolder1_lblQuote').style.color = colors[j];
    document.getElementById('ctl00_ContentPlaceHolder1_lblSignature').style.color = colors[j];
    setTimeout("fadeout()",100);

}


