
var quotations = new Array()
quotations[0]= "Hughes Resources works with the jobseeker to quickly find them a job.  There were able to place me with a good company in which I work with nice people.<br/><b>-Vicki Rzepka</b>"
quotations[1]= "I put off signing in with services such at Hughes Resources.  After seeing all that Hughes Resources does to assist jobseekers, I am so glad that I did.  I am proud to be a part of a company that works so hard for their clients as well as the employees.<br/><b>-Theresa Libberton</b>"
quotations[2]= "Hughes Resources is great at fitting people with jobs that are right for the person.  I am very happy with my job and my employer.<br/><b>-Cliff Stine </b>"
quotations[3]= "Hughes Resources was able to find me a position within a week.  My experience with Hughes Resources has been a great experience.  The Hughes Resource staff is wonderful to work with. <br/><b>-Tess Klinger </b>"
function display()
{
	a=Math.floor(Math.random()*quotations.length)
	document.getElementById('quotation').innerHTML=quotations[a]
	setTimeout("display()",8000)
}
