// JavaScript Document // This is the Testimonial img/text replacement script to go on (pretty much) every page // Created by Scott Deimler on 10/12/10. Contact: doublegeckosolutions@gmail.com //--> //--------------------------------Start Testimonial Replace Script----------------------------------- var rnumb = ""; var img = ""; // Remember, the math starts on 0 not 1 when coding! So, for example, random()*10 randomizes numbers 0-9 rnumb += Math.floor(Math.random()*21); img = rnumb; //Keep track of your numbers! Highest number value (below) must be 1 less than the random number (above) function imageReplace1 () { if (img == "0") { document.write("The communication strategies he taught us have really helped us to gel as a team. Thanks, Kelly!"); } if (img == "1") { document.write("Kelly exceeded our expectations as a trainer and consultant and we recommend him without hesitation."); } if (img == "2") { document.write("Kelly, you did an outstanding job as our executive coach. Thank you for facilitating our professional growth."); } if (img == "3") { document.write("I personally recommend Kelly. He’s worth his weight in gold to any business wanting to grow their team and grow their market share."); } if (img == "4") { document.write("Since working with Kelly, my staff has been getting along much better, and I have been able to get back to my work without those distractions."); } if (img == "5") { document.write("With Kelly’s assistance, we were able to identify the professional development steps needed to rectify the situation."); } if (img == "6") { document.write("As a result of Kelly’s training, my job is much less stressful and the communication at work has been greatly improved."); } if (img == "7") { document.write("The end result is that we are working together far more efficiently and effectively."); } if (img == "8") { document.write("Kelly has a way of breaking down the barriers of poor communication. I cannot speak highly enough of his skills and methods."); } if (img == "9") { document.write("The department staffs and I are excited about the results we have had working with Kelly."); } if (img == "10") { document.write("Again, thank you both for getting our year off to a great start!"); } if (img == "11") { document.write("Kelly has worked with us for many years on many different problems and has helped us every time."); } if (img == "12") { document.write("Over the course of the last six months, it has been a delight working with Kelly in leadership and employee development."); } if (img == "13") { document.write("IBS delivers results. I have personally seen their success with these processes."); } if (img == "14") { document.write("On the occasions when I have needed support with leading my team, Kelly Graves has been an invaluable resource."); } if (img == "15") { document.write("Liz's ability to uphold program timeliness while maintaining speaker and audience interest was a sight to see. I will be hiring IBS again."); } if (img == "16") { document.write("Our organization has been receiving excellent services through IBS since 2007, with special thanks to Liz Peterson Bilinsky."); } if (img == "17") { document.write("In this process Kelly has been very flexible in working with staff and management, given our limited budget. Kelly’s services have brought incredible value to our current needs."); } if (img == "18") { document.write("Thanks so much for article in ER today. I'm looking for a part-time job and now will put your ideas into action. Thanks for the encouragement. I know I can do it now!"); } if (img == "19") { document.write("'Corporate Therapist' Kelly Graves provided unique feedback when observing the team and when it came to the individual manager's assessments. He knew the right questions to ask and how to process their answers in a insightful way."); } if (img == "20") { document.write("Thank you for your article, 'Meaning trumps money at work.' I could not have described my own situation any better. Sometimes it helps to see it in writing. It gave me some motivation to seriously begin considering some other options at this point in my career. Thanks again."); } } function imageReplace2 () { if (img == "0") { document.write("-Shirley Huang Batman, Branch Manager II, Wells Fargo Bank"); } if (img == "1") { document.write("-Liz Galler, Owner, Discount Disposables"); } if (img == "2") { document.write("-Dan Cosio, Owner, Cosio and Cosio"); } if (img == "3") { document.write("-Tim Dexter, Owner, Westside Research"); } if (img == "4") { document.write("-Arnold Lee, M.D."); } if (img == "5") { document.write("-Steven Rudy, Assistant Superintendent of Administrative Services, Butte County Office of Education"); } if (img == "6") { document.write("-Teresa Lightle, Customer Service Manager, Butte County Office of Education"); } if (img == "7") { document.write("-Michael Weissenborn, Facilities Planning / Construction Manager, Chico Unified School District"); } if (img == "8") { document.write("-Vikki Gillett, Director of Information Technology, Chico Unified School District"); } if (img == "9") { document.write("-Mary K. Leary, Director of Maintenance / Operations / Transportation, Chico Unified School District"); } if (img == "10") { document.write("-Mary Jane Burke, Superintendent of Schools, Marin County Office of Education"); } if (img == "11") { document.write("-Russ Selkin, President, Advanced Technology Group"); } if (img == "12") { document.write("Beverly Johnson, Director of Human Resources, RCBS / ATK"); } if (img == "13") { document.write("Steve Martino, Manager, PEO Division, InterWest Insurance Services, Inc."); } if (img == "14") { document.write("Sheila Heuer, Owner, Destino's"); } if (img == "15") { document.write("Suzie Clark, Assistant Project Director, Shasta College Economic Workforce Development Grants Office"); } if (img == "16") { document.write("Thorson Bailey, President, Ag Biomass Council, Inc."); } if (img == "17") { document.write("Jim Wagoner, Air Pollution Control Officer, Butte County Air Quality Management District"); } if (img == "18") { document.write("Susan, a reader of the Chico Enterprise-Record's 'Workplace' column [written weekly by Kelly Graves]"); } if (img == "19") { document.write("Matt York, CEO & Publisher, Videomaker Inc."); } if (img == "20") { document.write("Louis Venturini, an interested Business Column reader"); } } //--------------------------------End Image Replace Script----------------------------------- //-->