/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 6;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
quote="I feel very secure working with the team at Hardy Construction. They are dedicated to getting the job done right - especially when it means going the extra step on their part to ensure the project will be completed above and beyond the owner's expectations.";
quote=quote.italics()
owner="Rick Larsen, Owner";
phone="(406) 245-3575 Ext. 212";
business="EBMS (Employee Benefit Management Services)";
address="PO Box 21367";
city="Billings, MT 59104";
}

if (quotes==1) {
quote="As our business has grown, we've needed to expand our facility to serve our customers. Hardy's project managers were not only professional, but were also very concerned about the importance of keeping our business running smoothly throughout the remodeling and addition phases. Hardy Construction's project superintendent understood that establishing a good working relationship with us was just as important as the finished product.";
quote=quote.italics()
owner="Connie Hamilton, Co-Owner";
phone="(406) 652-6630";
business="Montana Health Research Institute";
address="2101 Broadwater Avenue";
city="Billings, MT 59102";
}

if (quotes==2) {
quote="As our company continues to grow, we're proud to have Hardy Construction as partners with us every step of the way. The professionals at Hardy Construction are not only expert craftsman; they're also honest and reliable team members who work with us from start to finish. This kind of partnership has enabled Stockman Bank to receive the highest quality workmanship at the best value.";
quote=quote.italics()
owner="Bill Coffee, Executive Vice President";	
phone="(406) 655-2700";
business="Stockman Bank";
address="PO Box 80850";
city="Billings, MT 59108";
}

if (quotes==3) {
quote="Hardy Construction measures success by meeting the needs of the project's owners. The client's interests are always first and foremost in every element of the construction process. I'm always proud to be a partner with Hardy Construction.";
quote=quote.italics()
owner="Gene Kolstad, Owner, Architect, Engineer";
phone="(406) 248-7455";
business="CTA Architects Engineers";
address="PO Box 1439";
city="Billings, MT 59103";
}

if (quotes==4) {
quote="Hardy Construction's commitment to fairness and quality service has never wavered over the last half century. As other construction companies come and go, you can always count on Hardy Construction's team to be true to their work---it's that kind of integrity that sets the foundation for quality workmanship time and time again.";
quote=quote.italics()
owner="Max Griffin, Owner";
phone="(406) 245-9551";
business="Action Electric, Inc.";
address="PO Box 2415";
city="Billings, MT 59103";
}

if (quotes==5) {
quote="Cogswell Agency measures our customers' reputation and strength by two fundamental components -- Character and Capacity. Hardy Construction's character is impeccable; Greg Hardy and his crew are professionals on and off the job. Their capacity to work with and for the owner is the cornerstone of their success. Hardy Construction can be proud of their history of serving the needs of businesses in this region for nearly 50 years.";
quote=quote.italics()
owner="Ted Cogswell, Jr., Owner";
phone="(800) 735-6753";
business="Cogswell Agency";
address="PO Box 2009";
city="Great Falls, MT 59403";
}

document.write('<div align=left>');
document.write('<center>\"' + quote + '\"<br><br>');
document.write('<strong>'+ owner +'</strong><br>');
document.write('<strong>'+ phone +'</strong><br>');
document.write('<strong>'+ business +'</strong><br>');
document.write('<strong>'+ address +'</strong><br>');
document.write('<strong>'+ city +'</center></strong><br>');
document.write('</div>');

