﻿function getRandomTestimonial(){	var images = new Array();	var titles = new Array();	var texts = new Array();		images[0] = "<img src='/assoc/TemplateNewImg/John+McFerran1.jpg' alt='' />";	images[1] = "<img src='/assoc/TemplateNewImg/Emma+Singh1.jpg' alt='' />";	images[2] = "<img src='/assoc/TemplateNewImg/Shirley+Lumb1.jpg' alt='' />";	images[3] = "<img src='/assoc/TemplateNewImg/Judy+Murphy1.jpg' alt='' />";	images[4] = "<img src='/assoc/TemplateNewImg/Scott+Stirton1.jpg' alt='' />";	images[5] = "<img src='/assoc/TemplateNewImg/Ken+Devine1.jpg' alt='' />";	images[6] = "<img src='/assoc/TemplateNewImg/Jack+Lima+1.jpg' alt='' />";	images[7] = "<img src='/assoc/TemplateNewImg/Derek+Johannson1+(1).jpg' alt='' />";	images[8] = "<img src='/assoc/TemplateNewImg/Vince+Stycke1.jpg' alt='' />";		titles[0] = "John McFerran, president and COO, People First HR";	titles[1] = "Emma Singh, owner and lead consultant";	titles[2] = "Shirley Lumb, executive director, Manitoba";	titles[3] = "Judy Murphy, practice leader, strategy";	titles[4] = "Scott Stirton, CEO, Smith Carter Architects";	titles[5] = "Ken Devine, president, Electra Sign Ltd.";	titles[6] = "Jack Lima, owner, Feel Free Personalized Security";	titles[7] = "Derek Johannson, Carlyle Printers, Supplies Ltd";	titles[8] = "Vince Stycke, division director, Investors Group ";		texts[0] = "As a Chamber member, you have the inside track on issues of critical importance to the growth and prosperity of our city, and you have the opportunity to help shape our...";	texts[1] = "To build my business, I decided to join as many wonderful groups here in the city as I could to get to know more people who would provide me networking opportunities..";	texts[2] = "We’re committed to promoting healthy lifestyles, but as a small office, it can be challenging to provide our own employees with adequate group benefits..";	texts[3] = "The networking opportunities are fantastic! As an active member of The Winnipeg Chamber, I have built meaningful business relationships and expanded...";	texts[4] = "The Chamber has provided me a venue to voice issues and insights within a committed group, which can influence civic leaders and position policies...";	texts[5] = "Not long ago, the City of Winnipeg administration introduced a draft bylaw that threatened the viability of both our industry and most Winnipeg businesses.";	texts[6] = "I attended my first Chapter meeting and made a really, really good contact, which resulted in my security service being hired.";	texts[7] = "In every business owner's life there comes a day that they realize they are a cog in a big machine called ‘community’ and that a healthy community is the key...";	texts[8] = "Volunteering with Selling Winnipeg to the World was a win-win-win. Not only did I get to do something I believe in – helping the city of Winnipeg...";		var math_array = Math.floor(Math.random()*(images.length));	var images_res = images[math_array];	var titles_res = titles[math_array];	var texts_res = texts[math_array];		document.getElementById('testimonials_text').innerHTML = texts_res;	document.getElementById('testimonial_image').innerHTML = images_res;	document.getElementById('random_lists_item_headline').innerHTML = titles_res;		}
