<!-- // cloak
quote = new Array(
'"Elecheck’s dedication and commitment to fulfilling our needs is beyond question" <br /><br /> - <span class="quotee">Group Property Manager, Recruitment Consultancy</span>',
'"The staff are courteous, knowledgeable and presentable" <br /><br /> - <span class="quotee">Bursar, Independent School</span>',
'"The standard of service and reliability is excellent" <br /><br /> - <span class="quotee">Quality Representative, National Hire Company</span>',
'"Excellent service from start to finish every time" <br /><br /> - <span class="quotee">Property Manager, Housing Association</span>',
'"The disruption was minimal which helped us maintain the continuity of our business" <br /><br /> - <span class="quotee">Senior Electrical Maintenance Officer, Local Authority</span>',
'"We were constantly informed what was happening and it was clearly summarised at the end" <br /><br /> - <span class="quotee">Office Manager, Technology Company</span>',
'"Elecheck is well structured with a good management back-up" <br /><br /> - <span class="quotee">Buildings Manager, University</span>'
);

 rnd.today=new Date();
 rnd.seed=rnd.today.getTime();

 function rnd() {
		 rnd.seed = (rnd.seed*9301+49297) % 233280;
		 return rnd.seed/(233280.0);
 };

 function rand(number) {
		 return Math.ceil(rnd()*number);
 };				
// uncloak -->