<!--

<!-- length of each row is 100 characters-->

var quotes = new Array();

quotes[0] = {line1:"'I consider Markinekt a true recruiting partner. They are my first 'go to' for our strategy and project management hiring needs because they make a point to understand our unique requirements.'", line2:"-Tracy Neylon, VP, Talent Development, IconNicholson"};
//quotes[1] = {line1:"'I consider Markinekt a true recruiting partner.'", line2:"-Tracy Neylon, VP, IconNicholson"};
//quotes[2] = {line1:"'They are my first 'go to' for our strategy and project management hiring needs.'", line2:"-Tracy Neylon, VP, IconNicholson"};
//quotes[3] = {line1:"'Markinekt makes a point to understand our unique requirements.'", line2:"-Tracy Neylon, VP, IconNicholson"};


var a = 0;
arr_length = quotes.length;

function updateQuote() {

	if (a==arr_length) {a=0;}
	
	var html = quotes[a].line1.substr(0,200) + "<br />" + "<i><span style='float:right'>" + quotes[a].line2.substr(0,200) + "</span></i>";

	document.getElementById('quote').innerHTML = html;
   myInterval = setTimeout("updateQuote()", 8000);
   a = a + 1;
}
function StartClock() {
   myInterval = setTimeout("updateQuote()", 500);
}

function killTime() {
   if(myInterval) {
      clearTimeout(myInterval);
      a  = 0;
   }
}


//-->

