
var allquotes=new Array();

var quote1=new Array();
quote1[0]='<div class=style2>&#147;I am totally impressed with The Uriah Group&#39;s management, vision, knowledge, and ';
quote1[1]='unique ability to quantify and develop strategic solutions to restaurant, government, and foodservice industry ';
quote1[2]='food security issues.&#148;</div><div class=style1 align=right><i>Steven F. Grover, R.E.H.S.<br>';
quote1[3]='Vice President, Food Safety, Quality Assurance and Regulatory Compliance<br>Burger King Brands, Inc.</i></div>';
allquotes[0]=quote1;

var quote2=new Array();
quote2[0]='<div class=style2>&#147;In this day and age, customer service and satisfaction are rarities with most companies.';
quote2[1]=' Not so with The Uriah Group. They are in a league above others with their product and their personal service. ';
quote2[2]='The support is there 100&#37; of the time, no matter the project scope.&#148;</div>';
quote2[3]='<div class=style1 align=right><i>Tim Bartkowiak<br>Director of Security<br>Spartan Stores</i></div>';
allquotes[1]=quote2;

var whichquote=Math.floor(Math.random()*(allquotes.length));
var quote=new Array();
quote=allquotes[whichquote];
for (i=0; i<4; i++)
{
document.write(quote[i]);
}
