var photoOne = new Array()

photoOne[0] = "associate1.jpg"
photoOne[1] = "associate2.jpg"
photoOne[2] = "associate3.jpg"
photoOne[3] = "associate4.jpg"
photoOne[4] = "associate5.jpg"
photoOne[5] = "associate6.jpg"

var photoTwo = new Array()

photoTwo[0] = "associate7.jpg"
photoTwo[1] = "associate8.jpg"
photoTwo[2] = "associate9.jpg"
photoTwo[3] = "associate10.jpg"
photoTwo[4] = "associate11.jpg"
photoTwo[5] = "associate12.jpg"

var testimonial = new Array()

testimonial[0] = "To me, coming here is a reminder that there are good people in the world.  It is such a joy to work with my coworkers, my supervisors and the residents.  Residents here aren't just our clients, they're our family and we work as a team to make it their home."
testimonial[1] = "How many places can you go to work and have hundreds of friendly conversations as a part of your work day? You also get to join the fun activities on site. I truly believe we have teamwork  and communication here, not just people who come into work everyday, but people who truly care about each other. This is a family."
testimonial[2] = "I have been working here for 3+ years and I really love it.  I started as a Server, which allowed me to interact with residents, but working for Kisco gives you lots of opportunities to gain experience in different areas on the site.  Plus – this is a whole new family for me at work. I like coming to work – it's fun and I have a smile on my face because I realize I am going to help somebody today."

var employeeName = new Array()

employeeName[0] = "Associate - First Colonial Inn"
employeeName[1] = "Associate - The Fountains"
employeeName[2] = "Associate - Drake Terrace"

random_num = (Math.round(Math.random()*5))
random_number = (Math.round(Math.random()*2))

document.write('<div id="empPhoto"><img src="images/' + photoOne[random_num] + '" style="margin-bottom: 5px;" /><br /><img src="images/'  + photoTwo[random_num] + '" width="120" height="82"/></div>' +
	'<div id="empText"><h6>EMPLOYEE TESTIMONIAL</h6>' +
	'<p>' + testimonial[random_number] + '</p>' +
	'<div class="empName">' + employeeName[random_number] + '</div>' +
	'</div>');