// JavaScript Document var NewImg1 = new Array (); var ImgUrl = new Array (); NewImg1[NewImg1.length] = "/images/slideshow/09.jpg"; ImgUrl[ImgUrl.length] = "http://www.gpcentre.com/directory.php?f_action=directory_detail&directory_id=35"; NewImg1[NewImg1.length] = "/images/slideshow/Web Ad Tramps Final.090811.jpg"; ImgUrl[ImgUrl.length] = "http://gpcentre.com/directory.php?f_action=directory_detail&directory_id=22"; NewImg1[NewImg1.length] = "/images/slideshow/Web Ad - Framing mark 5.090813.jpg"; ImgUrl[ImgUrl.length] = "http://gpcentre.com/directory.php?f_action=directory_detail&directory_id=39"; NewImg1[NewImg1.length] = "/images/slideshow/06.jpg"; ImgUrl[ImgUrl.length] = "http://www.gpcentre.com/directory.php?f_action=directory_detail&directory_id=31"; NewImg1[NewImg1.length] = "/images/slideshow/02.jpg"; ImgUrl[ImgUrl.length] = "http://www.gpcentre.com/directory.php?f_action=directory_detail&directory_id=29"; NewImg1[NewImg1.length] = "/images/slideshow/10.jpg"; ImgUrl[ImgUrl.length] = "http://www.gpcentre.com/directory.php?f_action=directory_detail&directory_id=41"; NewImg1[NewImg1.length] = "/images/slideshow/Web Ad - Poplar-Springs mark 2.090730.jpg"; ImgUrl[ImgUrl.length] = "http://gpcentre.com/directory.php?f_action=directory_detail&directory_id=28"; NewImg1[NewImg1.length] = "/images/slideshow/01.jpg"; ImgUrl[ImgUrl.length] = "http://www.gpcentre.com/directory.php?f_action=directory_detail&directory_id=30"; NewImg1[NewImg1.length] = "/images/slideshow/04.jpg"; ImgUrl[ImgUrl.length] = "http://www.gpcentre.com/directory.php?f_action=directory_detail&directory_id=24"; NewImg1[NewImg1.length] = "/images/slideshow/03.jpg"; ImgUrl[ImgUrl.length] = "http://www.gpcentre.com/directory.php?f_action=directory_detail&directory_id=21"; NewImg1[NewImg1.length] = "/images/slideshow/08.jpg"; ImgUrl[ImgUrl.length] = "http://www.gpcentre.com/directory.php?f_action=directory_detail&directory_id=20"; NewImg1[NewImg1.length] = "/images/slideshow/Web Ad - Periwinkle.090807.jpg"; ImgUrl[ImgUrl.length] = "http://gpcentre.com/directory.php?f_action=directory_detail&directory_id=47"; NewImg1[NewImg1.length] = "/images/slideshow/07.jpg"; ImgUrl[ImgUrl.length] = "http://www.gpcentre.com/directory.php?f_action=directory_detail&directory_id=40"; NewImg1[NewImg1.length] = "/images/slideshow/Web Ad Optometry Adjustment.090811.jpg"; ImgUrl[ImgUrl.length] = "http://www.gpcentre.com/directory.php?f_action=directory_detail&directory_id=34"; var ImgNum1 = 0; var ImgId = ""; var ImgLength1 = NewImg1.length; //Time delay between Slides in milliseconds var delay1 = 5000; var lock = false; var run; function chgImg1() { if (document.images) { ImgNum1 = ImgNum1 + 1; if (ImgNum1 > ImgLength1) { ImgNum1 = 1; } if (ImgNum1 < 0) { ImgNum1 = ImgLength1; } // document.slideshow.src = NewImg1[ImgNum1]; // document.slideshowhref.href = ImgUrl[ImgNum1]; $("img#slideshow").attr("src", NewImg1[ImgNum1]); $("a#slideshowhref").attr("href", ImgUrl[ImgNum1]); } } function auto() { if (lock == true) { lock = false; window.clearInterval(run); } else if (lock == false) { lock = true; run = setInterval("chgImg()", delay); } } function start() { run1 = setInterval("chgImg1()", delay1); }