/*	NOTES:*	Format html code on a single line*	Do not use single quotes (') in the html, this will break the javascript*	Replace single quotes with this html entity ->	 &rsquo;*	If a single quote must be use, precede it with a backslash ->	\'*/var testimonials = new Array();/* DO NOT EDIT ANYTHING ABOVE THIS LINE */testimonials.push('<p>I worked with Terri on projects at Alexza Pharmaceuticals.  Because of her professionalism, team and project management skills, and her ability to stick to timelines, I recommended her when I moved to HemoSense.  Once again, Terri was able to pull the team together. She did whatever the team couldn&rsquo;t do.  And she made the entire project FUN, which helps keep the project team involved.  Terri will always be the first person I recommend for any software project.</p><p align="right" class="quoteAuthor">Candice Betz<br />Director, Product Quality<br />Inverness Medical Innovations/HemoSense</p>');testimonials.push('<p>The underlying success of implementing our new Quality Management Enterprise Software System lies in Terri Mead&rsquo;s remarkable leadership and project skills.  Terri functioned as a perfect leader between the project team, software vendor, and the steering committee.  Although the project team had many other challenges, the enthusiasm with which she led the project made everyone promptly contribute.  The Solutions2Project Team was client focused, professional, technical, and was always aware of "what&rsquo;s next" in the overall IT project lifecycle.</p><p align="right" class="quoteAuthor">Kaushal Shah<br />Manager, Quality Engineering <br />Inverness Medical Innovations/HemoSense</p>');testimonials.push('<p>I have worked with Terri Mead on several Part 11 related projects. Terri is hands down the best project manager I have worked with. She kept the projects on time and motivated the team to complete their deliverables. I would only commit to projects in which Terri was the PM, as I knew the project would always be a success.</p><p align="right" class="quoteAuthor">Tina Self<br />Associate Director<br />EMD Pharmaceuticals</p>');testimonials.push('<p>Terri Mead&rsquo;s ability to focus on the big picture and her attention to detail have been key to the success of multiple projects here at Alexza. She knows our industry, is organized and driven, and does whatever it takes to get the job done. We have come to rely on her.</p><p align="right" class="quoteAuthor">Stacy Palermini<br />Director of Finance<br />Alexza Pharmaceuticals</p>');testimonials.push('<p>Bringing Terri Mead on board is like hiring four consultants. She is a master project manager, has extensive experience with enterprise level systems and maintains a thorough and very current knowledge of the pharmaceutical industry and all applicable regulations. Terri has the unique ability to translate complex business requirements into streamlined processes and flawless implementations. She is equally adept at high level strategic planning and the detail level required during complex implementations. In summary, Terri will be a phenomenal asset to any organization in business consulting and planning, enterprise system implementations, validation efforts, and project management.</p><p align="right" class="quoteAuthor">Ron Witt<br />Sr. Director Information Technology<br />Alexza Pharmaceuticals, Inc.</p>');testimonials.push('<p>Terri Mead is one of the strongest IT projects managers I have worked with. She is highly responsive, customer focused and committed to fulfill project needs in a timely and professional manner. Terri has a great understanding of what makes a project team successful.</p><p class="quoteAuthor" align="right">Sayeh Morali<br />Associate Director<br />Clinical Operations</p>');testimonials.push('<p>Alexza would never have met the aggressive ERP implementation timeline if Terri Mead had not been our project manager. Terri went above and beyond our expectations to make sure we were successful. She came to do the ERP implementation, but she was so successful with it that we had her manage other projects at Alexza. Not only is Terri efficient and professional, she is also fun to work with.</p><p align="right" class="quoteAuthor">Lucila Oliveira<br />Accounting Manager<br />Alexza Pharmaceuticals</p>');testimonials.push('<p>Over the years I came to rely on Terri&rsquo;s considerable skills and abilities to understand what needed to be accomplished for IT projects from project inception, to budgeting, contract and price negotiation and all the pesky details associated with projects.</p><p align="right" class="quoteAuthor">David Shoup<br />IT Director<br>Cell Genesys</p>');testimonials.push('<p>Solutions2Projects provided technical, project and people management expertise that ensured we met project objectives on schedule. Combined experience in both pharmaceuticals and accounting enabled Solutions2Projects to help us identify issues and solutions early in the project, saving us considerable time and effort.  I look forward to working with Solutions2Projects on future projects.</p><p align="right" class="quoteAuthor">Mark Oki<br />Controller<br />Alexza Pharmaceuticals</p>');testimonials.push('<p>Terri Mead stepped in when a software selection was being mismanaged by another consulting firm and got the selection back on track. She is exceptionally skilled at getting the business to focus on those key and critical items that will provide the most value to the business and help to differentiate the vendor solutions that are being considered.</p><p align="right" class="quoteAuthor">Keith Wipprecht<br />LabWare, Inc.</p>');testimonials.push('<p>Implementing a new quality system application is a complex undertaking, and success requires exceptional project management.  Terri Mead has the knowledge and practical experience to ensure that all aspects of a project stay on track and on time. She is a true professional.</p><p align="right" class="quoteAuthor">Doug Rundle<br />Vice President, QA/RA<br />HemoSense/Cholestech</p>');testimonials.push('<p>Terri applied broad business knowledge to add value in the selection and implementation of software.  She helped us refine our requirements to cover not just the basics we needed but also those that would allow us to expand as the company grew more sophisticated. The result was a solid implementation with ample opportunity to grow the system as our business needs developed.</p><p align="right" class="quoteAuthor">Ernie Nast<br />Former Director of Supply Chain Management at Cell Genesys</p>');/* DO NOT EDIT ANYTHING BELOW THIS LINE *///-------------------------------------------------------------------------------function getRandomNum(lbound, ubound) {	return (Math.floor(Math.random() * (ubound - lbound)) + lbound);};//-------------------------------------------------------------------------------function isNothing(v)		{ 								v = new String(v);								return ( v == 'undefined' || v == 'null' || v.length == 0 ? true : false );							}//-------------------------------------------------------------------------------function setCookie(cookieName, cookieValue, expireDays, cookiePath) {	var exdate = new Date();	if(!isNothing(expireDays) && !isNaN(expireDays)) {		var d = expireDays * 24; //days to hours			d *= 60; //hours to minutes			d *= 60; //minutes to seconds			d *= 1000; //seconds to milliseconds			exdate = new Date(exdate.valueOf() + d);	}	document.cookie = cookieName + "=" + escape(cookieValue) +	";expires=" + exdate.toGMTString() +	";path=" + (isNothing(cookiePath) ? "/" : cookiePath);};//-------------------------------------------------------------------------------function getCookie(cookieName){	if(document.cookie.length > 0) {		c_start=document.cookie.indexOf(cookieName + "=")		if (c_start != -1) { 			c_start=c_start + cookieName.length + 1;			c_end=document.cookie.indexOf(";", c_start);			if (c_end == -1) { c_end = document.cookie.length; }			return unescape(document.cookie.substring(c_start, c_end));		} 	}	return null;};//-------------------------------------------------------------------------------function writeRandomQuote() {	var n = testimonials.length - 1;	if(!document.cookie) {		var c = getRandomNum(0, n);	} else {		var c = getCookie("randomquote");		if(c == null || c >= n) {			c = -1;		}		c = (c-0) + 1;		setCookie("randomquote", c, 1);	}	document.write(testimonials[c]);};writeRandomQuote();