
var item=new Array()

item[0]='<h4>"Aries made changing software systems easier than any other company I have ever worked with."</h4><h5><b>Sam Moody</b><br>Operations Manager<br>Cassemco, Inc.</h5>'
item[1]='<h4>"Your company must be able to keep up with technology to reduce costs and give better customer service so that your business continues to grow.  This is what Aries can offer to you."</h4><h5><b>Montie Cline</b><br>VP of Administration and Controller<br>Carter Furniture of Salisbury</h5>'
item[2]='<h4>"After bad experiences with other Sage partners, we spoke with the folks at Aries.  They have good answers, their pricing is fair, their work is guaranteed and they have the experience, resources and understanding to support our company."</h4><h5><b>Perry Johnson</b><br>VP of Operations<br>Park Designs</h5>'
item[3]='<h4>"I have presented Aries with some pretty challenging projects over the years and they always come through with a solution that always improves the business dynamics of CFPapers."</h4><h5><b>Russ Walker</b><br>General Manager<br>CFPapers, Inc.</h5>'
item[4]='<h4>"What impresses me the most about Aries is the manner in which they support my company.  You can absolutely count on them to provide an unprecedented level of customer support."</h4><h5> <b>Frank Flaherty</b><br>Owner<br>DataMan Business Systems, Inc.</h5>'



var current=0

var ns6=document.getElementById&&!document.all
function changeItem(){
	if(document.layers){
	document.layer1.document.write(item[current])
	document.layer1.document.close()
	}

	if(ns6)document.getElementById("div1").innerHTML=item[current]
	{
	if(document.all){
	div1.innerHTML=item[current]
	}
}

if (current==4) current=0
else current++
setTimeout("changeItem()",7000)
}


