
	var quotations = new Array()
	quotations[0]= "&quotGreat looking Report!&quot<p align='right'><BR><b>Mary Ann Puppo</b></p>"
	quotations[1]= "&quotStephen Martin is one of the best reserve study people in northern CA. We have done a lot of work with him before and I know he will do a great job for you as well!&quot<p align='right'><BR><b>Chris Barna</b></p>"
	quotations[2]= "&quotI can tell that you really &quot;get it&quot; and are able to see things from a manager&lsquo;s perspective. In our industry we are constantly facing tight deadlines and often we don&lsquo;t get all of the information we need until we are right up against the deadline. When you are able to get back to us the same day, it is really helpful!&quot<p align='right'><BR><b>Rob Spencer</b></p>"
	quotations[3]= "&quotI've worked with Stephen for a couple of years now on reserve studies.  He is fast, professional, does a really nice job, easy to work with, and their price is right.&quot<p align='right'><BR><b>Linda Schoeffner</b></p>"
	quotations[4]= "Our Motto is simple. &quotProvide association's with the professional guidance they need, with the respect and quality of service they deserve.&quot<p align='right'><BR><b>Stephen Martin</b></p>"
	

hex=255 // Initial color value.
hex2=0
a=0



	function display() {

		if (a<quotations.length-1) {
			a=a+1;
		}
		else
			a=0
		//a=Math.floor(Math.random()*quotations.length)
		
		document.getElementById("quotation").innerHTML=quotations[a];
		fadetextin()
		setTimeout("fadetextout()",10000)
		

	}

	function fadetextin(){ 
		if(hex>0) { //If color is not black yet
		hex-=11; // increase color darkness
		document.getElementById("quotation").style.color="rgb("+hex+","+hex+","+hex+")";
		setTimeout("fadetextin()",20); 
		}
		else 
			hex=255
	}

	function fadetextout(){ 
		if(hex2<255) { //If color is not black yet
		hex2= hex2+11; // increase color darkness
		document.getElementById("quotation").style.color="rgb("+hex2+","+hex2+","+hex2+")";
		setTimeout("fadetextout()",20); 
		}
		else {
			hex2=0
			display()
		}
	}
		



