function makeSupportQuotes(quote,customer,account){
	this.quote = quote;
	this.customer = customer;
	this.account = account;
	this.write = writeSupportQuotes;
} 

function writeSupportQuotes(){
	var str = '';
	str += '<blockquote><table cellpadding="0" cellspacing="0" border="0" height="132"><tr><td valign="middle">';
	str += '<h2 style="font-size:14px;margin-bottom:0px;padding-bottom:0px;">&ldquo;' + this.quote + '&rdquo;</h2>';
	str += '<p style="margin-top:2px;padding-top:2px;margin-bottom:0px;padding-bottom:0px;font-size:11px;">&ndash; ' + this.customer + ', ' + this.account + '</p>';
	str += '</td></tr></table></blockquote>';
	return str;
} 

var SupportQuotesArray = new Array();
SupportQuotesArray[0] = new makeSupportQuotes(
	'I couldn&rsquo;t have asked for more…great tech, perfect attitude, lots of knowledge.',
	'William Fisbee',
	'Abiomed').write();

SupportQuotesArray[1] = new makeSupportQuotes(
	'GREAT SUPPORT and help, very timely too.',
	'Steve Beach',
	'Aramark Corp').write();

SupportQuotesArray[2] = new makeSupportQuotes(
	'I was very... pleased with your support team... My problems were either resolved or I received training... and they showed me the way to do it correctly. They supported me... with a friendly and caring attitude which... is very rare. And they checked back... to make sure all was well.',
	'Gregory Gavin',
	'Baystate Health Systems').write();

SupportQuotesArray[3] = new makeSupportQuotes(
	'The instructor was one of the best instructors I have had in a long time. He is incredibly knowledgeable and his personality is well suited to teaching.',
	'Jeff Keenan',
	'Gibraltar Industries').write();

SupportQuotesArray[4] = new makeSupportQuotes(
	'Your technical support engineer was knowledgeable and provided good training.',
	'Tony Wong',
	'Bolling AFB').write();

SupportQuotesArray[5] = new makeSupportQuotes(
	'Your technical support engineer was very knowledgeable of your product…very consciousof our need for uptime... I am very satisfied at the results I get from his work.',
	'John Thrumston',
	'Capitol Region Health Care').write();

SupportQuotesArray[6] = new makeSupportQuotes(
	'CommVault escalation engineers are the best in the industry... very quick to resolve the issue.',
	'Rick Phillips',
	'Comdata Corp').write();

SupportQuotesArray[7] = new makeSupportQuotes(
	'Your technical support engineer was very courteous, professional and showed concern for resolving our issue in a timely manner.',
	'Farshid Eslami',
	'Corinthian Colleges').write();

SupportQuotesArray[8] = new makeSupportQuotes(
	'Your technical support engineers were great!!',
	'Dennis Ferguson',
	'Crossroads Systems Inc.').write();

SupportQuotesArray[9] = new makeSupportQuotes(
	'Very impressed with the technical support I received.',
	'Meb Manek',
	'Financial Services Commission Ontario (FSCO)').write();

SupportQuotesArray[10] = new makeSupportQuotes(
	'Excellent service &ndash; I was asked by an outside party considering commvault, how the support was &ndash; told them you should be the benchmark for others.',
	'Patti Henderson',
	'Givens Pursley').write();

SupportQuotesArray[11] = new makeSupportQuotes(
	'Your technician was extemely knowledgeable, helpful and completed all of my requests and issues in a timely manner.',
	'Greg Fink',
	'Imperial Palace Hotel and Casino').write();

SupportQuotesArray[12] = new makeSupportQuotes(
	'The support service was some of the best I&rsquo;ve received in years from an organization.',
	'Jessie Daly',
	'Isis Pharmaceuticals').write();

SupportQuotesArray[13] = new makeSupportQuotes(
	'The technical support engineer did a great job of understanding the problem... was very knowledgeable of the issue and provided a quick, accurate and thorough response to my issue.',
	'Zachary Knaus',
	'J&B Group').write();

SupportQuotesArray[14] = new makeSupportQuotes(
	'Your product and support are great. We have not looked back since we switched from Symantec Backup Exec.',
	'Matt Hall',
	'Kelly and Associates Insurance Group').write();

SupportQuotesArray[15] = new makeSupportQuotes(
	'I was very impressed with your technical support engineer&rsquo;s knowledge of the system.',
	'Tony Davis',
	'Next Action Corp').write();

SupportQuotesArray[16] = new makeSupportQuotes(
	'Your technical support reps are just about the best that any customer can ever hope to get...',
	'Michael O&rsquo;Brien',
	'Sarofim').write();

SupportQuotesArray[17] = new makeSupportQuotes(
	'I have rarely found a group of people as talented, knowledgeable, helpful and accountable as the support staff at CommVault.',
	'Tibor Knauz, Jr.',
	'SANFORD, L.P.').write();

SupportQuotesArray[18] = new makeSupportQuotes(
	'The support from the CommVault is simply superb... awesome... the best I have experienced.',
	'Narasimha Reddy Sathi',
	'Shell IT International').write();

SupportQuotesArray[19] = new makeSupportQuotes(
	'Overall, I have been extremely satisfied with CommVault technical support.',
	'Scott Cooper',
	'Spotsylvania').write();

SupportQuotesArray[20] = new makeSupportQuotes(
	'&lsquo;Super-dooper-fantasterrific&rsquo;, and then some.',
	'Eric Keller',
	'Warnarco').write();

var nIndex = Math.round(Math.random() * SupportQuotesArray.length);
var timerID = null;
function rotateSupportQuotes(){
	var len = SupportQuotesArray.length;
	if (len == 1) {
		document.getElementById('largequote').innerHTML = SupportQuotesArray[nIndex];
	} else {
		if(nIndex >= len) { nIndex = 0; }
		document.getElementById('largequote').innerHTML = SupportQuotesArray[nIndex];
		nIndex++;
		timerID = setTimeout('rotateSupportQuotes()', 6000);
	}
}

function pauseSupportQuotes() {
	var len = SupportQuotesArray.length;
	if (len >= 2) {
		if (timerID != null) {
			clearTimeout(timerID);
			timerID = null;
		}
	}
}

function playSupportQuotes() {
	var len = SupportQuotesArray.length;
	if (len >= 2) {
		if (timerID == null) {
			timerID = setTimeout('rotateSupportQuotes()', 5000);
		}
	}
}

rotateSupportQuotes()