var txt = [
'<span>&ldquo;I&rsquo;ve worked with a lot of different simulation software, and Simio is probably the most promising and exciting one I&rsquo;ve seen in all that time.&rdquo;</span> <br /><br /> Dr. David Kelton, professor and program director of the Master of Science in quantitative analysis at the University of Cincinnati',

'<span>&ldquo;Simio is a user-friendly and effective package for quickly building simulation models.&rdquo;</span><br /><br /> Marcus Volz, Analyst, TSG Consulting',

'<span>&ldquo;The ability to turn models into objects in other models is extremely helpful.&rdquo;</span><br /><br /> J. Ethan Brown, Manager, Deloitte Consulting',

'<span>&ldquo;Simio provides an important contribution to help us spread the knowledge of simulation and its applications.&rdquo;</span><br /><br /> Carlos Rodrigo Ruiz Cruz, Professor, Escuela Colombiana de Ingenieria',

'<span>&ldquo;Simio&acute;s 3D animation is impressive and easy to use.&rdquo;</span><br /><br /> Marcus Volz, Analyst, TSG Consulting',

'<span>&ldquo;The GUI-based approach to programming results in not having to write code or learn a programming language.&rdquo;</span><br /><br /> J. Ethan Brown, Manager, Deloitte Consulting',

'<span>&ldquo;We built a functional and fully-animated version of large warehouse model in only three days.&rdquo;</span><br /><br /> Marcus Volz, Analyst, TSG Consulting',

'<span>&ldquo;Other object-based products work on very simple problems but to do anything realistic in them requires programming.&rdquo;</span><br /><br />Simulation group leader, Healthcare',
'<span>&ldquo;I was able to do a simple pull model in Simio in about 15 minutes, something that I was unable to do before&rdquo;</span><br /><br />Senior Industrial Engineer, Global electronics manufacturer',
'<span>&ldquo;Simio is a truly revolutionary product!&rdquo;</span><br /><br />International leader in simulation applications and research',
'<span>&ldquo;We were able to increase worker productivity on one project by nearly 50%&rdquo;</span><br /><br /> J. Ethan Brown, Manager, Deloitte Consulting',
'<span>&ldquo;I appreciate your fast and thorough technical support&rdquo;</span><br /><br /> Senior engineer, Mining consultant'
];
var id = 0;

function rotate(){
	$('#txt').empty();
	$('#txt').append(txt[id]);
	if(id == txt.length-1){
		id=0;
	}else{
		id++;
	}
}
setInterval('rotate()',5000);
rotate();
