quote = new Array();
quote[0] = new Object();
			quote[0].text = "We deliver solutions to business challenges and develop strategies to seize upon market opportunities.";
			quote[0].ref = '/services/corporate/default.asp';
quote[1] = new Object();
			quote[1].text = "Whether a company is growing in an emerging marketplace or is struggling in a mature industry, there is no substitute for accurate market intelligence.";
			quote[1].ref = '/services/marketing/default.asp';
quote[2] = new Object();
			quote[2].text = "Orr & Boss' operations improvement services are designed to raise the bar on financial performance and organizational effectiveness.";
			quote[2].ref = '/services/operations/default.asp';
			
			quote[3] = new Object();
			quote[3].text = "We deliver solutions to business challenges and develop strategies to seize upon market opportunities.";
			quote[3].ref = '/services/corporate/default.asp';
			
			quote[4] = new Object();
			quote[4].text = "Orr & Boss' operations improvement services are designed to raise the bar on financial performance and organizational effectiveness.";
			quote[4].ref = '/services/operations/default.asp';

var p = quote.length;

var whichquote = Math.round(Math.random()*(p-1));

function writequote() {
document.write('&quot;' + quote[whichquote].text +'&quot;<br /><br /><a href="' + quote[whichquote].ref + '">Learn More</a>');
}

