// JavaScript Document
function GetRandomNumber() {

var quotes = new Array();
quotes[0] = '~Nari, Creative:<br />"<i>Free healthy lunches. An in-house massage therapist. A registered nurse. A gym in the building with an outdoor track on the roof. That’s what I’m talking about!</i>"';
quotes[1] = '~Marcia, Strategic Planning:<br>"<i>The culture is more congenial than at other places I’ve worked at. Plus, the smaller group makes management more accessible.</i>"';
quotes[2] = '~Marie, Account:<br>"<i>What distinguishes Saatchi Wellness from other agencies I’ve worked at? People who care.</i>"';
quotes[3] = '~Paul, Creative:<br>"<i>People are as committed to helping patients as they are about pleasing clients and pushing profit. I love knowing that.</i>"';
quotes[4] = '~Barbara, Creative:<br>"<i>Working here has made me much so more knowledgeable about my health.</i>"';
quotes[5] = '~John, Creative:<br>"<i>I’ve learned how to prevent and treat so many medical conditions, it’s come in handy at home.</i>"';
quotes[6] = '~Anna, Editorial:<br>"<i>There is a focus on wellness here, rather than on disease states.</i>"';
quotes[7] = '~Scott, Account:<br>"<i>I’ve met so many fun, smart, hardworking people here who persevere in the face of challenges and have a good time doing it.</i>"';
quotes[8] = '~Linda, Print Production:<br>"<i>They offer reflexology here. Love it!.</i>"';
quotes[9] = '~Lew, Creative:<br>"<i>Working at Saatchi Wellness has taught me a great deal about both health and healthcare.</i>"';
quotes[10] = '~Tina, Account:<br>"<i>Lovin’ that there’s a gym. Just joined it. Yoga- here I come!</i>"';
quotes[11] = '~Laura, Account:<br>"<i>Things like healthy lunches and town halls promote wellness from different directions, rather than being an agency that just sells drugs.</i>"';
quotes[12] = '~Anna, Editorial:<br>"<i>The idea of wellness is promoted to employees through benefits and speakers.</i>"';
quotes[13] = '~Rob, Creative:<br>"<i>I’m much more comfortable talking to my doctors than I had been in the past. I’m also more likely to question what they have to say. Basically, I’m a more engaged and informed patient than I ever was before.”</i>"';
quotes[14] = '~Cara, Account:<br>"<i>There’s a huge support system here. That’s just one of the reasons why I came back.</i>"';
quotes[15] = '~Paul, Creative:<br>"<i>Volunteering at the MS walks, writing travel articles for people who have mobility issues…these things have been every bit as rewarding and meaningful to me as any of the TV or print work I’ve done in my career.</i>"';
quotes[16] = '~Rob, Creative:<br>"<i>As a result of working here, I’m more inclined to take better care of myself.</i>"';
quotes[17] = '~Jenn, Account:<br>"<i>The SSW culture values a well-rounded lifestyle more than other agencies I’ve worked at. People here actually have lives outside the office!</i>"';
quotes[18] = '~Amanda, Account:<br>"<i>So many people here do volunteer work in a wide variety of areas. It’s heartening to see so many have a desire to help others get a leg up or just get on their feet.</i>"';
quotes[19] = '~Lew, Creative:<br>"<i>My state of wellness would not be as good without this experience at Saatchi Wellness.</i>"';
quotes[20] = '~Marcia, Strategic Planning:<br>"<i>The types of products we work with make empathy a more important quality to have and to cultivate.</i>"';
quotes[21] = '~Ryan, Creative:<br>"<i>It’s an amazing group of people who, even in the worst of times, make the best of it.</i>"';
quotes[22] = '~Jenn, Account:<br>"<i>They’re humane here. That extends to even things like respecting sick days and understanding the importance of a dentist appointment.</i>"';
quotes[23] = '~Donna:<br>"<i>I’m all about finding a healthy life/work balance. Thankfully, so is the agency.</i>"';
quotes[24] = '~Stu, Creative:<br>"<i>My job is a big part of my life, but Saatchi Wellness allows plenty of room for everything else I’ve got going on, too.</i>"';
quotes[25] = '~Sean, Account:<br>"<i>I was surprised to learn how broad the wellness spectrum is. Here, it ranges from pharmaceuticals to spas.</i>"';
quotes[26] = '~Marie, Account:<br>"<i>I’ve found amazingly talented people who openly share their gifts, support, and knowledge and make you feel valued. It’s like a family.</i>"';
quotes[27] = '~Donna, Finance:<br>"<i>I’ve learned here that wellness doesn’t have to be such a dry subject. That it can actually be an enjoyable road to travel.</i>"';
quotes[28] = '~Shawne, Creative:<br>"<i>I love that if I have a free hour in the middle of the day, I can just pop upstairs to the company gym.</i>"';
quotes[29] = '~Kel, IT:<br>"<i>The day-to-day energy and friendliness of the staff resembles a family. You don’t find that sort of connection so easily elsewhere.</i>"';
quotes[30] = '~Amanda, Account:<br>"<i>I really like that there’s a chiropractor in the office. I’ve never heard of such a thing before.</i>"';
quotes[31] = '~Shawne, Creative:<br>"<i>I’ve been here four years and I don’t think I’ve ever seen anyone backstab anyone else. That says a lot.</i>"';
quotes[32] = '~Laura, Account:<br>"<i>The atmosphere her is more holistic than medicinal. And there’s a healthy fun vibe here.</i>"';
quotes[33] = '~Donna, Project Management:<br>"<i>I love the people here!.</i>"';
quotes[34] = '~Fred:<br>"<i>There’s a sense of community and teamwork here. Both good things.</i>"';
quotes[35] = '~Nick, Account:<br>"<i>I’ve learned that the people you work with play an important role in looking forward to coming to work every morning.</i>"';
quotes[36] = '~Gidalya, Project Management:<br>"<i>There’s a spirit of camaraderie and an awareness of work/life balance here that is rare in the advertising world.</i>"';






	var i;
	var k;
	
	i = Math.random();
	k = Math.round(0 + ((36 - 0) * i));
	document.getElementById("quotesBox").innerHTML = quotes[k];
}

function startQuotes() {
	setInterval ( "GetRandomNumber()", 5000 );
}

