<!--
var people = new Array();
people [0] = "<p><strong>Chris Kavanagh, <br />Facilities Manager</strong></p><p>&ldquo;Reliance really rewards success and dedication. I was fundamental in the  positive growth of the M&amp;E division and they created a project-based role for me. If you show talent and flexibility you&rsquo;ll go far here.&rdquo;</p>";

people [1] = "<p><strong>Gail Pinkerton, <br />Account Director &ndash; Property &amp; FM</strong></p><p>&ldquo;I really enjoy being a part of the Reliance team, we have a strong work ethic and a fundamental belief in giving the best to our customers. There&rsquo;s a real culture of respect, loyalty, recognition and trust which enables us foster outstanding management thereby adding value to everything we do.&rdquo;</p>";

people [2] = "<p><strong>Ronke Shona, <br />Relief Receptionist</strong></p><p>&ldquo;When I was studying for my Masters, people here were really supportive about me working flexible shifts and fitting around my education. It&rsquo;s very interesting work too. Just about anything can happen &ndash; and it usually does!&rdquo;</p>";

people [3] = "<p><strong>Bob Grover, <br />Custody Assistant</strong></p><p>&ldquo;I love catching people who think they&rsquo;ve got away with it! Sometimes repeat offenders come in on a false identity and we find them out via fingerprinting. It&rsquo;s a rewarding job. Every day is different and there&rsquo;s a real sense of working as a team.&rdquo;</p>";

var peopleSecurity = new Array();
peopleSecurity [0] = "<p><strong>Gerald Brannan, <br />Site Supervisor</strong></p><p>&ldquo;People often think this job is just about sitting around, checking ID cards &ndash; but it&rsquo;s not. There&rsquo;s a huge responsibility in welcoming people; VIPs, Ministers, and the Mayor. But I&rsquo;m also responsible for maintaining the safety of the building and the people, which means every day is full of new challenges.&rdquo;</p>";

peopleSecurity [1] = "<p><strong>Susan Lucey, <br />Receptionist</strong></p><p>&ldquo;I like working for Reliance because it&rsquo;s a trusted name with good job security. Coming from a customer service background, I really enjoy the customer contact and meeting people from all walks of life, whoever they may be. I treat everyone the same.&rdquo;</p>";

peopleSecurity [2] = "<p><strong>Temitope Akinyanju, <br />Receptionist</strong></p><p>&ldquo;Coming from a repetitive admin background, I love how different and friendly it is here! In the two weeks since I joined, I&rsquo;ve received training at three different sites, which is a great way to learn something new every day.&rdquo;</p>";

peopleSecurity [3] = "<p><strong>Andrew Lewis, <br />Security Supervisor</strong></p><p>&ldquo;I&rsquo;m proud of the professionalism and high standards that Reliance stands for. The training is fantastic and I actually used my first aid skills on the way home to help the victims of a head-on collision.&rdquo;</p>";

var peopleCustodial = new Array();
peopleCustodial [0] = "<p><strong>Bob Grover, <br />Custody Assistant</strong></p><p>&ldquo;I love catching people who think they&rsquo;ve got away with it! Sometimes repeat offenders come in on a false identity and we find them out via fingerprinting. It&rsquo;s a rewarding job. Every day is different and there&rsquo;s a real sense of working as a team.&rdquo;</p>";

peopleCustodial [1] = "<p><strong>Pete Hall, <br />Detention Supervisor</strong></p><p>&ldquo;I really enjoy the challenge and variety that comes in my job. I started off as a Custody Assistant, where I was given the responsibility of training people on the fingerprinting machine &ndash; it&rsquo;s great to know your talent will be recognised and rewarded like that.&rdquo;</p>";

var peopleTechnical = new Array();
peopleTechnical [0] = "<p><strong>Jacques Lombard, <br />Service Supervisor</strong></p><p>&ldquo;Being a team player, the working environment at Reliance High Tech suits me perfectly &ndash; the atmosphere is that of a close-knit family unit striving towards a common goal. Here you are more than just a number, having your talents and skills honed and being afforded the opportunity to grow into the career best suited for you. Joining the <br />company will never <br />let you look back.&rdquo;</p>";

peopleTechnical [1] = "<p><strong>Leila Frame, <br />Card Production Administrator</strong></p><p>&ldquo;I&rsquo;ve been with Reliance for six years, during which time I went on maternity leave, so I now just work half days. They&rsquo;ve been brilliant offering flexible hours and being really supportive. I love that it&rsquo;s a really varied job as well with lots of different customers and plenty of problem solving challenges to keep me busy!&rdquo;</p>";

var peopleManagement = new Array();
peopleManagement [0] = "<p><strong>Charles Coney, <br />Patrol Net Director</strong></p><p>&ldquo;I joined Reliance on a Management Development Programme, and within three years, I had progressed to Patrol Net Director. I have been given amazing opportunities and been able to see tangible results from the impact I have made in the business. My career has <br />flourished.&rdquo;</p>";

peopleManagement [1] = "<p><strong>Gail Pinkerton, <br />Account Director &ndash; Property &amp; FM</strong></p><p>&ldquo;I really enjoy being a part of the Reliance team, we have a strong work ethic and a fundamental belief in giving the best to our customers. There&rsquo;s a real culture of respect, loyalty, recognition and trust which enables us foster outstanding management thereby adding value to everything we do.&rdquo;</p>";

var peopleFacilities = new Array();
peopleFacilities [0] = "<p><strong>Chris Kavanagh, <br />Facilities Manager</strong></p><p>&ldquo;Reliance really rewards success and dedication. I was fundamental in the  positive growth of the M&amp;E division and they created a project-based role for me. If you show talent and flexibility you&rsquo;ll go far here.&rdquo;</p>";

peopleFacilities [1] = "<p><strong>Sean Traynor, <br />Head of Health, Safety, <br />Environment &amp; Quality</strong></p><p>&ldquo;Every day is rewarding and interesting.  Never a day goes by where I don&rsquo;t meet people who are committed to delivering the Reliance Difference.  I believe Reliance really do care for their people, our welfare is of paramount importance.  It is an absolute pleasure to be part of the Reliance team.&rdquo;</p>";

var v = 1;
//window.onload = function(){  
//	i = Math.floor(Math.random()*people.length) + 1;
//	swapPeople();
//}  

function swapPeople() { 	
	if (v == people.length) {v = 1} else {v++;}
	document.getElementById("people").className = "people_home0" + v;
	document.getElementById('people_text').innerHTML = people [v-1] ;

}

function swapPeopleSecurity() { 	
	if (v >= peopleSecurity.length) {v = 1} else {v++;}
	document.getElementById("people").className = "people_security0" + v;
	document.getElementById('people_text').innerHTML = peopleSecurity [v-1];
}

function swapPeopleCustodial() { 	
	if (v >= peopleCustodial.length) {v = 1} else {v++;}
	document.getElementById("people").className = "people_custodial0" + v;
	document.getElementById('people_text').innerHTML = peopleCustodial [v-1];
}

function swapPeopleTechnical() { 	
	if (v >= peopleTechnical.length) {v = 1} else {v++;}
	document.getElementById("people").className = "people_technical0" + v;
	document.getElementById('people_text').innerHTML = peopleTechnical [v-1];
}

function swapPeopleManagement() { 	
	if (v >= peopleManagement.length) {v = 1} else {v++;}
	document.getElementById("people").className = "people_management0" + v;
	document.getElementById('people_text').innerHTML = peopleManagement [v-1];
}

function swapPeopleFacilities() { 	
	if (v >= peopleFacilities.length) {v = 1} else {v++;}
	document.getElementById("people").className = "people_facilities0" + v;
	document.getElementById('people_text').innerHTML = peopleFacilities [v-1];
}

//-->