var testimonials = [
	{
	text:"\"The new \'structured scenarios\' capability in EA 8 promises to radically improve the process of use case driven development (especially scenario-based testing) across the industry.\"",
	name:"Doug Rosenberg",
	position:"Chief Executive Officer",
	company:"ICONIX"
	},
	{
	text:"\"Sparx Systems just created another terrific release, especially the use case scenario editor. Prior to that, I was left with writing the use cases content in linked documents to get them to my liking (which was already superior to most other solutions I've used). Now, the editor allows me to keep track of the various steps, along with the interconnected elements like screens, domain elements, and other requirements.\"",
	name:"Philippe Back",
	position:"President",
	company:"High Octane"
	},
	{
	text:"\"We are thrilled to introduce our clients to this latest version of Sparx Systems’ powerful Enterprise Architect modeling tool, especially considering the many enhancements addressing the needs of the more business oriented User community.\"",
	name:"Frank Truyen",
	position:"President",
	company:"Cephas Consulting"
	},
	{
	text:"\"The continued advances not only in performance and scalability, but also in the quality of the User Interface can only broaden the appeal of Enterprise Architect and help us grow its market share.\"",
	name:"Frank Truyen",
	position:"President",
	company:"Cephas Consulting"
	},
	{
	text:"\"Enterprise Architect 8 from Sparx Systems brings the entire Requirements development and management process together in one place, accessible from anywhere, so contributors from different skill backgrounds and partner organizations can easily collaborate to elicit, analyze, specify, validate and trace requirements.\"",
	name:"Ramsay Millar",
	position:"Practice Leader",
	company:"integrate IT architects"
	},
	{
	text:"\"With Enterprise Architect 8 we rapidly model and write structured use cases, business rules, quality of service requirements, generate test scripts and trace to database and object-oriented software using agile or more rigorous methods ... Enterprise Architect is without any doubt the tool of choice for advanced Business Analysts and Project Managers team players who have done their research.\"",
	name:"Ramsay Millar",
	position:"Practice Leader",
	company:"integrate IT architects"
	},
	/*
	{
	text:"\"We have clearly proven a four week project saving on our second Enterprise Architect project to our team of Business Analysts at a Fortune 15 US Health Care Systems client recently. Using Enterprise Architect 8 writing and tracing Use Cases was never quicker and simpler.\"",
	name:"Ramsay Millar",
	position:"Practice Leader",
	company:"integrate IT architects"
	},
	*/
	{
	text:"\"Enterprise Architect V8 supercharges the UML modeling environment with a number of productivity enhancing features including structured use cases, the automatic generation of process models, workflow and the list goes on.\"",
	name:"Bryce Day",
	position:"Chief Executive Officer",
	company:"Catch Limited"
	}
];

$(function() {
	var testimonial = testimonials[Math.floor(Math.random()*testimonials.length)];
	$(".testimonials").append('<p style="font-style:italic;width:90%;margin-bottom:0px">'+testimonial.text+'</p>');
	$(".testimonials").append('<p style="font-weight:bold;margin-top:0px">'+testimonial.name+'<br />'+testimonial.position+'<br />'+testimonial.company+'</p>');
	$(".testimonials").css('margin-left','40px');
});

