var fotoCount = 13; var fotoPath = Array(14); fotoPath[1] = '/data/gallery2/1-190/foto190'; fotoPath[2] = '/data/gallery2/1-193/foto193'; fotoPath[3] = '/data/gallery2/1-194/foto194'; fotoPath[4] = '/data/gallery2/1-191/foto191'; fotoPath[5] = '/data/gallery2/1-192/foto192'; fotoPath[6] = '/data/gallery2/1-195/foto195'; fotoPath[7] = '/data/gallery2/1-196/foto196'; fotoPath[8] = '/data/gallery2/1-198/foto198'; fotoPath[9] = '/data/gallery2/1-197/foto197'; fotoPath[10] = '/data/gallery2/1-200/foto200'; fotoPath[11] = '/data/gallery2/1-199/foto199'; fotoPath[12] = '/data/gallery2/1-201/foto201'; fotoPath[13] = '/data/gallery2/1-202/foto202'; function rollImg(dir) { if (start==1) { $("#flash").css("background","url("+fotoPath[aImg]+".jpg) left 132px no-repeat"); start = 0; } else { $("#flash").css("background","url("+fotoPath[aImg]+".jpg) left 132px no-repeat"); if (dir==undefined) { aImg++; if (aImg==(fotoCount+1)) { aImg = 1; } } else { aImg--; if (aImg==0) { aImg = fotoCount; } } } setTimeout("passImg();",1000); } var stopSlide = false; function nextImg() { stopSlide = true; rollImg(); } function prevImg() { stopSlide = true; rollImg(1); } function passImg() { $("#flash>img").hide(); $("#flash>img").attr("src",""+fotoPath[aImg]+".jpg"); if (stopSlide==false) { setTimeout("showImg();",2000); } } function showImg() { $("#flash>img").fadeIn(1000); setTimeout("rollImg();",2000); } var aImg = 1; //+Math.round(Math.random()*(fotoCount-1)); var start = 1; $("#flash").css("background","url("+fotoPath[aImg]+".jpg) left 132px no-repeat"); rollImg();