var q1 = new Array("I am very pleased with your flash-drive based software, and your customer service is excellent.","Perry Rothrock, M.D.");

var q2 = new Array("Anyone who is looking at GoToMyPC should really consider Enterprise-in-a-Flash. It has so many more features, and greater security -- all for about the same cost as the competition.","Michael Spencer, Nor-Tek Computer Services");

var q3 = new Array("I am totally addicted. I just don't know what I did before. I am telling everyone about how great it is, and how affordable.","Kellie Boles, Agriculture Development Officer, JCDA");

var q4 = new Array("The best thing about Enterprise-in-a-Flash is that I don't have to carry my laptop with me everywhere I go.  I have complete peace of mind knowing that my information is protected by patented security technology.","Kelley Goes, West Virginia State Secretary of Commerce");

var q5 = new Array("Enterprise-in-a-Flash eliminated the very large, expensive, and time consuming problem of nurses and supervisors traveling to our office to enter confidential client information into our main computer, because now they can access that system remotely with HIPAA-compliant security.","Marty Strayer, President, Central Penn Nursing Care"); 

var q6 = new Array("The system is inexpensive and very easy for our staff to use, with virtually no training or support necessary at any point in the process.  I also use the system personally, constantly staying in touch with my office computer, my home office system, and our main office server while on frequent business travel.","Marty Strayer, President, Central Penn Nursing Care");

var q7 = new Array("My work requires that I spend a lot of time in the schools and traveling around the state. My Enterprise-in-a-Flash USB Key enables me to travel with my office in my pocket. If I have access to a computer, I have access to MY computer both in the office and at home. I consider it an office essential!","Mary Kay Bond, Executive Director, Read Aloud WV");

var q8 = new Array("As a business owner in the greater Washington DC area and a mother of three small children, managing time is everything. I am very satisfied with Enterprise-in-a-Flash -- it works well across the US as well as internationally (I have used it in South America). I highly recommend this service.","Giuliana Centty DDS, MS");

var q9 = new Array("I have taught IT security classes and worked as a 'white-hat hacker', and I can say with confidence that I found Enterprise-in-a-Flash to be far superior in protecting a user's identity. As for ease of use, even a relatively novice user would have no trouble installing and regularly using this service.","Michael Meyer, Sparco.com"); 

var q10 = new Array("It is a lot quicker to use than GoToMyPC, and totally more secure.  I am in the process of switching all my customers over to Enterprise-in-a-Flash.","Sandy Smith, Fiber-M Technologies");

var q11 = new Array("It's a must-have product.  Once customers find out about the product, they say, 'I can't live without that.'","Eduardo Perez-Glez, Sparco.com");

var q12 = new Array("We absolutely love it. It is very user friendly with no hassle. It is the cutting edge of technology... and you can quote me on that!","Angela Baird, Paramount Uniform");

theArray = new Array(q1,q2,q3,q4,q5,q6,q7,q8,q9,q10,q11,q12)

function genQuote()
{

	var ran_number=Math.floor(Math.random()*(theArray.length));
	document.getElementById('quote').innerHTML = '"' + theArray[ran_number][0] +'"';
	document.getElementById('quote_auth').innerHTML = '- ' + theArray[ran_number][1];	

	window.setTimeout('genQuote()',14000);

}

genQuote();
