//<--
function random_features(){
var mycontent=new Array()
//specify random content below.
mycontent[1]='"Anchor worked quickly and enabled me to double my business and make payroll. I highly recommend them."<br><strong>- Medical Staffing Firm Owner</strong>'
mycontent[2]='"Anchor really did make the process stress free - they live up to their slogan. I shopped around and thought I got better rates, but when Anchor told me to read the fine print, anchor was less expensive."<br><strong>- Magazine Publisher</strong>'
mycontent[3]='"The Team at Anchor is very responsive - they\'ve got great customer service and make quick decisions for my business."<br><strong>- IT Consulting firm Owner</strong>'
mycontent[4]='"Anchor helps me limit my credit losses. The first time they told me not to service a customer, I didn\'t listen to them, I wanted the sales. I wrote-off $10,000. Now I listen."<br><strong>- Business Services Firm Owner</strong>'

var chosen = 0;

	for(i=1;i<2;i++){
		var ry=Math.floor(Math.random()*mycontent.length)
			
		if (ry==chosen){
			ry=Math.floor(Math.random()*mycontent.length)
		}
		if (ry==0)
			ry=1
		document.write(mycontent[ry])
		document.write("<br /><br />")
		
		chosen = ry;
	}
}
random_features()
//-->

