﻿// JScript File

var baseUrl = "http://home.arcor.de/qnxlvr/pix_TW/";
var imgList = new Array();
var curImgIdx = 0;
var intervalTimer;


imgList.push("1987.jpg");
imgList.push("1997.jpg");
imgList.push("2002.jpg");
imgList.push("2003-01.jpg");
imgList.push("2003-02.jpg");
imgList.push("2004-06a.jpg");
imgList.push("2004-06b.jpg");
imgList.push("2004-09.jpg");
imgList.push("2004-10a.jpg");
imgList.push("2004-10b.jpg");
imgList.push("2005-01.jpg");
imgList.push("2005-02.jpg");
imgList.push("2005-03.jpg");
imgList.push("2005-04.jpg");
imgList.push("2005-05.jpg");
imgList.push("2005-07.jpg");
imgList.push("2005-10.jpg");
imgList.push("2005-11.jpg");
imgList.push("2005-12.jpg");
imgList.push("2006-08a.jpg");
imgList.push("2006-08b.jpg");

function preloadSlideShowImgs()
{
    /// preload
    try
    {
        for( var i = 0; i < imgList.length; i++)
        {
            var newImg = document.createElement("img");
            //document.body.appendChild(newImg); // not needed
            newImg.src = baseUrl + imgList[i];
        }   
    }
    catch(e) {}
}

function showNextImage()
{
    var imgName = imgList[curImgIdx];
    var imgSlideShow = document.getElementById("imgSlideShow");
    
    try
    {
        imgSlideShow.src = baseUrl + imgList[curImgIdx];
        imgSlideShow.alt = imgName.slice(0, imgName.length - 4);
        
        curImgIdx = (curImgIdx + 1) % imgList.length;
    }
    catch( ex)
    {}
}



