
testimonial_1 = "Express offers more than staffing. The best thing about this business is we’re not selling a product – instead we’re providing hope. Hope to people who need work. Help to businesses to find good workers. To make a living helping people in this way – there’s nothing better than that.";

name_1 = "Palbinder Badesha <br/> Franchisee, California";



testimonial_2 = "Express is genuinely interested in making sure we succeed. I have been given more than just the tools I need to succeed. There is a support system of people who help me develop the skills required to run a successful business.";

name_2 = "Lisa Young <br/> Franchisee, Michigan";




testimonial_3 = "My franchise broker told me, ‘In the franchise industry, Express is the gold standard. While you’re checking into your other opportunities, compare them to Express, and see if they stand up.’";

name_3 = "John Dickey <br/> Franchisee, Massachusetts";




testimonial_4 = "I benefit from being involved with Express both personally and professionally. There is a great purpose in serving your community, and what better way to help than to help people find jobs?";

name_4 = "Larry Diana <br/> Franchisee, North Carolina";




testimonial_5 = "Opening my office and starting my business was effortless because of the support I received from Express. I now have the best of both worlds. I have the autonomy to grow my business and run it my way, and I’m provided with all the resources and tools I need to get the job done.";

name_5 = "Elizabeth Gill <br/> Franchisee, Georgia";




testimonial_6 = "At Express, we’ve always been working for our future, and not just a paycheck. It’s very satisfying and truly rewarding to work with my husband toward our common goal: to provide for our family. Our dream has come true.";

name_6 = "Wendy and Ernie Mayo <br/> Franchisees, North Carolina";












//// PLEASE DO NOT CHANGE ANYTHING BELOW THIS ////
//// PLEASE DO NOT CHANGE ANYTHING BELOW THIS ////
//// PLEASE DO NOT CHANGE ANYTHING BELOW THIS ////
//// PLEASE DO NOT CHANGE ANYTHING BELOW THIS ////

var randomNum = Math.floor(Math.random()*6);

function testimonials()
{
    var testimonial=new Array(6)
	
     testimonial[0]= testimonial_1;
     testimonial[1]= testimonial_2;
     testimonial[2]= testimonial_3;   
     testimonial[3]= testimonial_4; 
     testimonial[4]= testimonial_5; 
     testimonial[5]= testimonial_6;     
	 
   document.write(testimonial[randomNum]);
}
function names()
{
    var name=new Array(6)
	
     name[0]= name_1;
     name[1]= name_2;
     name[2]= name_3;   
     name[3]= name_4; 
     name[4]= name_5; 
     name[5]= name_6;     
	 		  
   document.write(name[randomNum]);
}




