$(function() { $.imgpreload([ 'home-images/1100_FrontDusk.jpg' ,'home-images/Apool.jpg' ,'home-images/CD 041.jpg' ,'home-images/Montreal.jpg' ,'home-images/Q6W0078.jpg' ,'home-images/Q6W0178b.jpg' ,'home-images/Q6W1522.jpg' ,'home-images/Q6W1762.jpg' ,'home-images/ext pool.jpg' ], { each: function() { // this = new image object // callback executes on every image load }, all: function() { var images = [ "home-images/1100_FrontDusk.jpg" ,"home-images/Apool.jpg" ,"home-images/CD 041.jpg" ,"home-images/Montreal.jpg" ,"home-images/Q6W0078.jpg" ,"home-images/Q6W0178b.jpg" ,"home-images/Q6W1522.jpg" ,"home-images/Q6W1762.jpg" ,"home-images/ext pool.jpg" ]; var index = 0; $.backstretch(images[index], {speed: 400}); var slideshow = setInterval(function() { index = (index >= images.length - 1) ? 0 : index + 1; $.backstretch(images[index]); //alert(index); if ( index == 4) { $('.next1').trigger('click'); } else if ( index == 8) { $('.next1').trigger('click'); } else if (index == 11) { clearInterval(slideshow); // $('.prev1').trigger('click'); } }, 5000); $("#paging ul li a").click(function(e) { // Prevent the click from actually following the href e.preventDefault(); // Stop the slideshow //clearInterval(slideshow); // Backstretch $.backstretch( $(this).attr("href") ); }); $("#paging").jCarouselLite({ btnNext: ".next1", speed: 500, visible:4, scroll: 4, circular: false, btnPrev: ".prev1" }); } }); });