Advertisement
Guest User

Untitled

a guest
Jul 31st, 2014
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.31 KB | None | 0 0
  1. <script type="text/javascript">
  2.  
  3. var imgLinks = [
  4. // format: ['imageSource','imageLinkURL'],
  5. ['https://empathytherapy.com/images/testimonials/empathytherapy-testimonial-yp.png','http://www.yellowpages.com/sacramento-ca/mip/empathy-therapy-470786328?lid=214280887'],
  6. ['https://empathytherapy.com/images/testimonials/empathytherapy-testimonial-01.png','http://www.yelp.com/biz/empathy-therapy-sacramento'],
  7. ['https://empathytherapy.com/images/testimonials/empathytherapy-testimonial-02.png','http://www.yelp.com/biz/empathy-therapy-sacramento'],
  8. ['https://empathytherapy.com/images/testimonials/empathytherapy-testimonial-03.png','http://www.yelp.com/biz/empathy-therapy-sacramento'],
  9. ['https://empathytherapy.com/images/testimonials/empathytherapy-testimonial-04.png','http://www.wellness.com/dir/6008222/psychiatrist/ca/sacramento/mark-chofla-empathy-therapy-do'],
  10. ['https://empathytherapy.com/images/testimonials/empathytherapy-testimonial-05.png','http://www.wellness.com/dir/6008222/psychiatrist/ca/sacramento/mark-chofla-empathy-therapy-do'],
  11. ['https://empathytherapy.com/images/testimonials/empathytherapy-testimonial-06.png','http://www.wellness.com/dir/6008222/psychiatrist/ca/sacramento/mark-chofla-empathy-therapy-do'], ['https://empathytherapy.com/images/testimonials/empathytherapy-testimonial-07.png','http://www.wellness.com/dir/6008222/psychiatrist/ca/sacramento/mark-chofla-empathy-therapy-do'], ['https://empathytherapy.com/images/testimonials/empathytherapy-testimonial-08.png','http://www.wellness.com/dir/6008222/psychiatrist/ca/sacramento/mark-chofla-empathy-therapy-do'], ['https://empathytherapy.com/images/testimonials/empathytherapy-testimonial-09.png','http://www.wellness.com/dir/6008222/psychiatrist/ca/sacramento/mark-chofla-empathy-therapy-do'], ['https://empathytherapy.com/images/testimonials/empathytherapy-testimonial-10.png','http://www.wellness.com/dir/6008222/psychiatrist/ca/sacramento/mark-chofla-empathy-therapy-do'], ['https://empathytherapy.com/images/testimonials/empathytherapy-testimonial-11.png','http://www.wellness.com/dir/6008222/psychiatrist/ca/sacramento/mark-chofla-empathy-therapy-do'],
  12. ['https://empathytherapy.com/images/testimonials/empathytherapy-testimonial-12.png','http://www.kudzu.com/m/Empathy-Therapy-DrMark-Chofla-30494240/reviews/'],
  13. ['https://empathytherapy.com/images/testimonials/empathytherapy-testimonial-13.png','https://plus.google.com/110496396656209554355/about?hl=en'],
  14. ['https://empathytherapy.com/images/testimonials/empathytherapy-testimonial-14.png','http://sacramento.citysearch.com/profile/750606480/sacramento_ca/empathy_therapy.html?reviewType=internal'],
  15. ['https://empathytherapy.com/images/testimonials/empathytherapy-testimonial-15.png','http://www.yelp.com/biz/empathy-therapy-sacramento'],
  16. ['https://empathytherapy.com/images/testimonials/empathytherapy-testimonial-16.png','http://www.superpages.com/bp/Sacramento-CA/Empathy-Therapy-Dr-Mark-Chofla-DO-L2177106216.htm?C=empathy+therapy+sacramento+ca&lbp=1&STYPE=S&TR=77&bidType=FLCLIK&PGID=yp609.8083.1367431942246.1611284256393&dls=true&bpp=2&rwtab=1#BPreviewContainer'],
  17. ['https://empathytherapy.com/images/testimonials/header-no-testimonial.png','javascript: void(0)'],
  18. ['https://empathytherapy.com/images/testimonials/header-no-testimonial.png','javascript: void(0)'],
  19. ['https://empathytherapy.com/images/testimonials/header-no-testimonial.png','javascript: void(0)'],
  20. ['https://empathytherapy.com/images/testimonials/header-no-testimonial.png','javascript: void(0)'],
  21. ['https://empathytherapy.com/images/testimonials/header-no-testimonial.png','javascript: void(0)'],
  22. ['https://empathytherapy.com/images/testimonials/header-no-testimonial.png','javascript: void(0)'],
  23. ['https://empathytherapy.com/images/testimonials/header-no-testimonial.png','javascript: void(0)'],
  24. ['https://empathytherapy.com/images/testimonials/header-no-testimonial.png','javascript: void(0)']
  25. ];
  26.  
  27. function SetImage(IDS,imgPtr) {
  28. imgPtr = parseInt(imgPtr);
  29. document.getElementById(IDS).src = imgLinks[imgPtr][0];
  30. document.getElementById(IDS).alt = imgLinks[imgPtr][1];
  31. document.getElementById('Captions').innerHTML = imgLinks[imgPtr][1];
  32. }
  33.  
  34. function RandomLink() {
  35. var R = Math.random() * imgLinks.length;
  36. SetImage('Pics',R);
  37. }
  38.  
  39. function GoToURL(URL) { window.open(URL, '_blank'); }
  40. onload = function () { RandomLink(); }
  41.  
  42. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement