﻿var quotationsEmp = new Array()
quotationsEmp[0] = "<blockquote>\"In my experience of over 9 years, ECOMM actively rewards commitment, effort and motivation with opportunities for growth and advancement.<a href=\"employeeTestimonial.aspx\">Read More &raquo;</a></blockquote><cite>Traci Bowers<br />IT Manager </cite>"
quotationsEmp[1] = "<blockquote>\"I enjoy that ECOMM is a small company with the bells and whistles of a larger company.  The environment created here fosters success, and the support provided helps employees reach and exceed their goals.<a href=\"employeeTestimonial.aspx#martina\">Read More &raquo;</a></blockquote><cite>Martina Altomonte<br />ECOMM Base Account Representative</cite>"
quotationsEmp[2] = "<blockquote>\"ECOMM management has always rewarded hard work and the initiative to want to learn more. They have consistently made the tools and training available to support individual and team success. <a href=\"employeeTestimonial.aspx#moyer\">Read More &raquo;</a></blockquote><cite>Ron Moyer<br />Business Communications Consultant</cite>"




function displayEmp() {
    a = Math.floor(Math.random() * quotationsEmp.length);
    document.getElementById('quoteBoxEmp').innerHTML = quotationsEmp[a];
    setTimeout("displayEmp()", 9000);
}