// JavaScript Document var Quotes = new Array(); var randImg = new Array(); var Pick; var Pick2; function randQuote(time) { if(time==null) time = 8000; Quotes[0] = '

"Your work is nothing short of tremendous; it has been noticed and appreciated right through the organisation"

CISCO

'; Quotes[1] = '

"I have been more impressed with 2Europe than any other agency I have worked with"

EPSON EUROPE

'; Quotes[2] = '

"Thanks for your excellent and timely work - much appreciated"

3M

'; Quotes[3] = '

"The feedback was very positive and well received by the audience"

WESLEYAN

'; Quotes[4] = '

"Thanks for the presentation today, which certainly helped us to digest the research properly"

COUNTRYWIDE PLC

'; Quotes[5] = '

"Very pleased and thank you very much for your help again, particularly in coping with our timescales"

ARMSTRONG TS, HARRY RAMSDEN\'S

'; Quotes[6] = '

"This has provide a clear direction for the mobile brand strategy"

LG ELECTRONICS

'; Quotes[7] = '

"Your teams are more like colleagues than suppliers, we value your professionalism, service and advice."

SIEMENS

'; Quotes[8] = '

"Trouble free projects from our point of view"

IET

'; Quotes[9] = '

"I have been more impressed with 2Europe than any other agency I have worked with."

EPSON EUROPE

'; Quotes[10] = '

"Please do pass on my appreciation and thanks for the hard work to the team at your end."

TIDALWAVE TECHNOLOGY

'; Quotes[11] = '

"We made a good choice of supplier"

NHBC

'; Quotes[12] = '

"We have managed to extract far more out of this year\'s study than has been achieved previously - and deliver far more actionable results"

IET

'; Quotes[13] = '

"Went well giving a good balance"

CIMA

'; Quotes[14] = '

"An action research project in Erewash PCT"

PAGB

'; Quotes[15] = '

"just wanted to let you know how appreciated and pleased we are with the outcome of the project"

INVESTOR GROUP SERVICES

'; Quotes[16] = '

"I was very pleased with the work. You have obviously put a lot of effort into it and the feedback from the project team has been very positive"

WESLEYAN

'; Quotes[17] = '

"Just a quick note to say many thanks - we made a good choice of supplier"

NHBC

'; Quotes[18] = '

"Thank you the information will be vital for our European strategy"

THOMSON HEALTHCARE

'; Quotes[19] = '

"This has worked well and we wish to renew the contract again"

BOEHRINGER INGLEHEIM

'; Quotes[20] = '

"Reaching consultants and GPs with such a long questionnaire was a difficult challenge and I am impressed with what you achieved"

IGS

'; Quotes[21] = '

"Everything went great thanks"

MCCANN ERICKSON

'; Quotes[22] = '

"Went very well and they are very pleased with the whole thing, and talking about repeat and maybe extending it next year. So, thanks for everything"

DBA

'; Quotes[23] = '

"You are by far the most responsive and cost competitive and have become our preferred survey partner"

IDC

'; Quotes[24] = '

"My mind is at ease because I know you are handling my projects with personal care."

LANDOR ASSOCIATES

'; Quotes[25] = '

"A flexible, reliable and totally professional service with a personal touch missing from so many other agencies"

BANNER PLC

'; Quotes[26] = '

"This is awesome, I appreciate how on top of things you are."

INFOTRIEVE

'; Quotes[27] = '

"The Independent specialists"

MANAGEMENT TODAY

'; Quotes[28] = '

"We find your detail helps us continue our growth"

PANASONIC

'; Quotes[29] = '

"programmes to assist in the resolution of business problems related to satisfaction"

LOYALTY MAGAZINE

'; Quotes[30] = '

"to your co-operation, my responsibility in Europe has been fulfilled and my burden reduced"

NRI (Japan)

'; Quotes[31] = '

"It\'s a pleasant change to deal with an agency who really understands the market"

VODAFONE

'; Quotes[32] = '

"Robust and reliable and this will help the tech guys back in Korea"

SAMSUNG

'; Quotes[33] = '

"This is our first survey and has greatly help focus our strategic direction"

HELPHIRE

'; Quotes[34] = '

"What sets you apart is the genuine interest you show in the work you complete"

MOTOROLA

'; Quotes[35] = '

"It was a pleasure working with your company"

GAZELLE

'; Quotes[36] = '

"This is terrific and beyond our expectations"

KSBR

'; Quotes[37] = '

"You are amazing thank you!"

ReadingRoom

'; Quotes[38] = '

"Thanks for all your quick-return answers to our questions and requests for further analysis"

KSBR

'; Quotes[39] = '

"We were very happy with the services you provided"

Wilson Research Strategies

'; Pick = parseInt(Math.random()*(Quotes.length)); if(Quotes[Pick]!=null){ document.write('
' + Quotes[Pick] + '
'); setInterval(changeQuote, time); } } function changeQuote() { if(Pick == (Quotes.length-1)) Pick = 0; else Pick = Pick+1; $("#tquote").fadeOut("fast", function() { $("#tquote").html(Quotes[Pick]); $("#tquote").fadeIn("slow"); }); } function rndImg(time) { if(time==null) time = 8000; Pick2 = parseInt(Math.random()*(randImg.length)); if(randImg[Pick2]!=null){ document.write('
' + randImg[Pick2] + '
'); setInterval(changeImg, time); } } function changeImg() { if(Pick2 == (randImg.length-1)) Pick2 = 0; else Pick2 = Pick2+1; $("#tquote1").fadeOut("fast", function() { $("#tquote1").html(randImg[Pick2]); $("#tquote1").fadeIn("slow"); }); }