/* REMEMBER TO ESCAPE INLINE DOUBLE QUOTES \" */
var customerTestimonials =
[
	{
		"testimonial" 	: "We were very pleased with their timeliness -- from the submission of their proposal to the completion of the survey and presentation of the report.  I would recommend Reserve Advisors to other associations in the area.",
		"name"  		: "Reeves C. Miller",
		"title"       	: "Broker/Owner",
		"location"		: "Prudential Keystone Properties<br />Lansdale, PA"
	},
	{
 		"testimonial" 	: "The thoroughness of their report was especially important for our first study. It helps to justify the cost of the study when people see such a comprehensive, colorful set of reports.",
		"name"  		: "Rosie McGowan",
		"title"       	: "Resort Manager",
		"location"		: "Winter Haven Resort<br />Brownsville, TX"
	},
	{
 		"testimonial" 	: "I know from working with Reserve Advisors on past studies their end product is great. When the board has the final product they can see why we encourage it. They also make the property manager look good. ",
		"name"  		: "Sarah Brown",
		"title"       	: "Property Manager",
		"location"		: "1st American Management Company, Inc.<br />Valparaiso, IN"
	},
	{
 		"testimonial" 	: "The sample report from Reserve Advisors is great. The fact that I could easily get them documents via e-mail to get started was also a positive.",
		"name"  		: "Sarah Brown",
		"title"       	: "Property Manager",
		"location"		: "1st American Management Company, Inc.<br />Valparaiso, IN "
	},
	{
 		"testimonial" 	: "I have worked with Reserve Advisors for approximately 15 years. This is very important to me because I acquired an association that had a reserve study done in the past and, when it was time for an update, the company no longer existed.  Reserves Advisors is the best company I have worked with and I will always continue to use them.",
		"name"  		: "Linda Stanko",
		"title"       	: "Property Manager",
		"location"		: "American Property Management<br />Schaumburg, IL"
	},
	{
 		"testimonial" 	: "I appreciated their quick response.  They had a very nice presentation with the proposal.  Everyone I deal with is professional, friendly and courteous.",
		"name"  		: "Lynn Brown",
		"title"       	: "Building Service Coordinator",
		"location"		: "Hanlin Management, Inc.<br />Des Plaines, IL"
	},
	{
 		"testimonial" 	: "You deliver for my associations.  I am confident when I make the recommendation that they will be treated professionally and the work will be prompt and thorough.",
		"name"  		: "Earline J. Wakefield ",
		"title"       	: "Property Manager",
		"location"		: "Goodwin Management, Inc.<br />Austin, TX"
	},
	{
 		"testimonial" 	: "The thoroughness and knowledge of the engineer who completes the study sets Reserve Advisors apart. ",
		"name"  		: "Barbara Wallner, CMCA, AMS",
		"title"       	: "Property Manager",
		"location"		: "Eastwood Owners Association, Inc.<br />Shorewood, WI"
	},
	{
 		"testimonial" 	: "From start to finish, Reserve Advisors was responsive and attentive to the needs of our association. Board members were not at all familiar with the study process and Reserve Advisors took the time to answer every question thoroughly and in a timely manner. You do a superb job.",
		"name"  		: "Terry Cromwell, CMCA, AMS ",
		"title"       	: "Community Manager",
		"location"		: "Community Association Services, Inc.<br />Gaithersburg, MD"
	},
	{
 		"testimonial" 	: "I appreciate Reserve Advisors' responsiveness. I don't have to call repeatedly for a proposal. Everyone with whom I've come in contact has been pleasant and professional. Your reports are comprehensive, easy to use and provide excellent guidance.",
		"name"  		: "Peggy McCormick",
		"title"       	: "Association Manager ",
		"location"		: "Horst Property Management<br />Lancaster, PA"
	},
	{
 		"testimonial" 	: "They are the best national reserve study company I've ever worked with.  Their studies are user-friendly and easily understood by boards.",
		"name"  		: "John Lawton, CMCA, PCAM",
		"title"       	: "President",
		"location"		: "HRW, Inc.<br />Raleigh, NC"
	},
	{
 		"testimonial" 	: "I called Reserve Advisors and they assured me they would get to our property as soon as possible. They made some changes to their schedule to meet our needs. This says volumes.",
		"name"  		: "Terri Redshaw, CMCA",
		"title"       	: "Property Manager",
		"location"		: "Gassen Management<br />Eden Prairie, MN "
	},
	{
 		"testimonial" 	: "I can't say enough about the service we received from your company. I will continue to use you, as well as recommend your company at every chance I have. Thanks for the fabulous service. Also, your study was very user friendly and the cost was very reasonable.",
		"name"  		: "Terri Redshaw, CMCA",
		"title"       	: "Property Manager",
		"location"		: "Gassen Management<br />Eden Prairie, MN "
	},
	{
 		"testimonial" 	: "Reserve Advisors is very sensitive to the client's needs. They're timely with their responses and they're flexible within the constraints of putting together an accurate report.",
		"name"  		: "Lou Lutz, CPM, PCAM",
		"title"       	: "President",
		"location"		: "Legum \& Norman Mid-West<br />Chicago, IL"
	},
	{
 		"testimonial" 	: "The firm provided a well documented report which was very beneficial in setting reserve fund targets. Their data is credible and valid to the association.",
		"name"  		: "Brian Howell, LCAM",
		"title"       	: "Director of Services",
		"location"		: "CAMS<br />Tampa, FL"
	}
];

jQuery(function($){
	var tObj = customerTestimonials.random();
	$('#home #sub-3 > blockquote').html(tObj.testimonial);
	$('#home #sub-3 > p').html('<strong>'+tObj.name+'</strong><br />'+tObj.title+'<br />'+tObj.location);
	$('#sidebar blockquote').html(tObj.testimonial);
	$('#sidebar > p:first').html('<strong>'+tObj.name+'</strong><br />'+tObj.title);
	$('#sidebar > p:eq(1)').html(tObj.location);
});