var myImages = ['Pictures/180/089ph_00245.jpg','Pictures/180/089ph_00246.jpg','Pictures/180/089ph_00247.jpg','Pictures/180/089ph_00248.jpg','Pictures/180/089ph_00249.jpg','Pictures/180/089ph_00250.jpg','Pictures/180/089ph_00251.jpg','Pictures/180/089ph_00252.jpg','Pictures/180/089ph_00487.jpg','Pictures/180/089ph_00488.jpg','Pictures/180/089ph_00489.jpg','Pictures/180/089ph_00490.jpg','Pictures/180/089ph_00491.jpg','Pictures/180/089ph_00492.jpg','Pictures/180/089ph_00493.jpg','Pictures/180/089ph_00494.jpg','Pictures/180/089ph_00554.jpg','Pictures/180/089ph_00555.jpg','Pictures/180/089ph_00556.jpg','Pictures/180/089ph_00557.jpg','Pictures/180/089ph_00558.jpg','Pictures/180/089ph_00559.jpg','Pictures/180/089ph_00560.jpg','Pictures/180/089ph_00561.jpg','Pictures/180/089ph_00562.jpg','Pictures/180/089ph_00563.jpg','Pictures/180/089ph_00564.jpg','Pictures/180/089ph_00565.jpg','Pictures/180/089ph_00566.jpg','Pictures/180/089ph_00567.jpg','Pictures/180/089ph_00568.jpg','Pictures/180/089ph_00569.jpg','Pictures/180/089ph_00570.jpg','Pictures/180/089ph_00571.jpg','Pictures/180/089ph_00572.jpg','Pictures/180/089ph_00573.jpg','Pictures/180/089ph_00574.jpg','Pictures/180/089ph_00575.jpg','Pictures/180/089ph_00576.jpg','Pictures/180/089ph_00577.jpg','Pictures/180/089ph_00578.jpg','Pictures/180/089ph_00679.jpg','Pictures/180/089ph_00680.jpg','Pictures/180/089ph_00681.jpg','Pictures/180/089ph_00735.jpg','Pictures/180/089ph_00736.jpg','Pictures/180/089ph_00770.jpg','Pictures/180/089ph_00771.jpg','Pictures/180/089ph_00772.jpg','Pictures/180/089ph_00773.jpg','Pictures/180/089ph_00774.jpg','Pictures/180/089ph_01115.jpg','Pictures/180/089ph_01116.jpg','Pictures/180/089ph_01117.jpg','Pictures/180/089ph_01118.jpg','Pictures/180/089ph_01121.jpg','Pictures/180/089ph_01122.jpg','Pictures/180/089ph_01123.jpg','Pictures/180/089ph_01124.jpg','Pictures/180/089ph_01125.jpg','Pictures/180/089ph_01126.jpg','Pictures/180/089ph_01127.jpg','Pictures/180/089ph_01128.jpg']; var maxChanges = myImages.length * 10; var do_shuffle = true; var do_randomly = false; var seconds_between_photos = 8; var div_name = "loader"; var changes = 0; var timer; var thisImg = myImages.length - 1; shuffle = function(o) { for(var j, x, i = o.length; i; j = parseInt(Math.random() * i), x = o[--i], o[i] = o[j], o[j] = x); return o; }; if (do_shuffle) { myImages = shuffle(myImages); } function nextImage () { var low = 0; var high = myImages.length - 1; var rand_no = Math.floor((high-(low - 1))*Math.random()) + low; thisImg++; changes++; if (thisImg==myImages.length) { thisImg = 0; } if (changes==maxChanges) { clearInterval(timer); } if (do_randomly) { thisImg = rand_no; return myImages[rand_no]; } else { return myImages[thisImg]; } } function changeImage () { var t = myImages[thisImg]; var n = nextImage(); if (t != n) { $("#"+div_name).addClass("loading"); showImage(n); } else { changeImage(); } } function showImage(src) { $("#"+div_name+" img").fadeOut("normal").remove(); var largeImage = new Image(); $(largeImage).load(function() { $(this).hide(); $("#"+div_name).append(this).removeClass("loading"); $(this).fadeIn("slow"); }); $(largeImage).attr("src", src); } function checkForLoaded () { if (document.getElementById(div_name) != null) { //alert("loaded"); clearInterval(timer); changeImage(); timer = setInterval(changeImage, (seconds_between_photos * 1000)); } } timer = setInterval(checkForLoaded, 500);