var testify = [
	["kd","I like the standards, the community of people, and I like the managers...I would say move to Raintree&mdash;I've tried other apartments and it\'s a lot better here.","Kaylee D."],
	["mf","You really can't go wrong...it's a good atmosphere. It's like a big family. You can go to the other apartments and just say 'hi'.","Matthew F."],
	["sn","I like the people because they all have high standards...I have really good roommates, and I'm friends with my neighbors.","Susan N."]
];

var visibleQuote = 0;

function showQuote () {
	var quoteHTML = '<div class="rs_img"><img src="/images/rs/rs_'+testify[visibleQuote][0]+'.png" alt="" /></div><div class="rs_quote">&ldquo;'+testify[visibleQuote][1]+'&rdquo;</div><div class="rs_name">'+testify[visibleQuote][2]+'</div>';
	visibleQuote++;
	if(visibleQuote >= testify.length) visibleQuote = 0;
	
	$("#rs").html(quoteHTML);
}

