// JavaScript Document

function getaQuote(){
	var quote=new Array()
	quote[0]="Let us help - Clean, Inspect, Repair.......";
	quote[1]="Why let a minor building problem turn into a monumental building burden?";
	quote[2]="We do exactly what you want in a timely manner at a fair price";
	quote[3]="Without a vision, your facility will be managing you,<br />instead of you managing your facility.";  
	quote[4]="Religious Property Due Diligence";
	quote[5]="Property Condition Assessments for Religious Properties";
	quote[6]="We do exactly what you want in a timely manner at a fair price";
	quote[7]="A Game Plan for the Future of a Church";
	quote[8]="An assessment of buildings and grounds as to condition and<br />repairs required to maintain a religious property for generations";
	quote[9]="A Catalyst for Preservation and Growth";
	quote[10]="We do exactly what you want in a timely manner at a fair price";
	var whichquote=Math.floor(Math.random()*(quote.length))
	document.write(quote[whichquote])
}
// getaQuote();

