// JavaScript Document
var random_quotes = new Array ( );
random_quotes[0] = "Easy to use. A valuable tool in our day-to-day operations. <span class='reference'>Sean Studer, McElhanney Land Surveys Ltd.</span>";
random_quotes[1] = "Very helpful in making up quotes and for compiling jobs. <span class='reference'>Mark Theverkauf, Boundary Technical</span>";
random_quotes[2] = "Outstanding value & phenomenal source of information. <span class='reference'>Cheryl Verhaeghe, Clearwater County</span>";
random_quotes[3] = "Can’t live without it, helps all the drivers, gives them everything they need to know to get to where they’re going. <span class='reference'>Glen Lafontaine, Ability Hauling & Hot Shot Ltd.</span>";
random_quotes[4] = "It's the Cadillac of the systems we've used. <span class='reference'>Lora Hunter, Anchor King</span>";
random_quotes[5] = "Great tool, we use it all the time. <span class='reference'>Randy Brunatti, AMEC Earth & Environmental</span>";
random_quotes[6] = "Gives us easy access to the information. <span class='reference'>Peggy Ring, Cadastral Group</span>";
random_quotes[7] = "Easy to learn and user friendly. Contains all the necessary data for pipelines and wells. <span class='reference'>Ray Abt, Penn West Petroleum</span>";
random_quotes[8] = "Super duper. Great, service. Excellent. Happy with product. <span class='reference'>Sirt Lin, Challanger Geomatics</span>";
random_quotes[9] = "Excellent, really helpful for the guys. Very easy to operate, do not need to be a computer genius to operate. Best I’ve ever seen. <span class='reference'>Barry Pearson, Badger Daylighting</span>";
random_quotes[10] = "Very useful tool, great service. Aids in our day-to-day activities. <span class='reference'>Wayne Schoneck, Albert Line Find</span>";
random_quotes[11] = "We use it extensively and find it accurate. We start our survey search with AbaData<sup>tm</sup>. We find it an excellent research tool. <span class='reference'>Warren Barlow – Barlow Surveying Inc.</span>";
random_quotes[12] = "I love the program. I was able to train a new employee on AbaData<sup>tm</sup> in 30 minutes. It has made our job 100% easier and safer. <span class='reference'>AJ Andres, ACE Construction</span>";
random_quotes[13] = "Very easy access from mobile locations using a laptop computer and air card. <span class='reference'>Mark Gravel, AGTL Construction</span>";
random_quotes[14] = "AbaData<sup>tm</sup> is very quick and easy to use. It has cut down our time. <span class='reference'>Wayne Schoneck, Alberta Line Find</span>";
random_quotes[15] = "We like AbaData Lite<sup>tm</sup> because lots of options & very user friendly & the staff at Abacus always there to help.<span class='reference'>Randy Rae, Accutech Ground Disturbance</span>";

var career_quotes= new Array ( );
career_quotes[0] = "I like the diversity of the company.";
career_quotes[1] = "There is a sense of team spirit at Abacus and I enjoy the fast-paced environment and the challenges this creates.";
career_quotes[2] = "I like the unlimited restrictions on personal and professional growth.";
career_quotes[3] = "There is solid job security here and an excellent benefit package offered to every employee.";
career_quotes[4] = "Employees are treated with respect at Abacus, and you know your ideas are important and welcomed.";
career_quotes[5] = "Over the 11 years I’ve worked here, the spirit and dedication of the company and staff has been excellent. ";


function rand ( n )
{
  return ( Math.floor ( Math.random ( ) * n + 1 ) );
}

function pick_quote ( )
{
	var num = random_quotes.length;
  document.getElementById("testimonials").innerHTML = random_quotes[rand(num)-1];
  setTimeout("pick_quote()",10000);
}

function career_quote ( )
{
	var num1 = career_quotes.length;
  document.getElementById("testimonials").innerHTML = career_quotes[rand(num1)-1];
}

	