var x = 10
var y = 1
function startClock()
    {
     x = x-y
     setTimeout("startClock()", 1000)
     if(x==0)
        {
         if (document.images)
            {
             img1 = new Image();
             img2 = new Image();
             img3 = new Image();
             img4 = new Image();
             img5 = new Image();
             img6 = new Image();
             img7 = new Image();
             img8 = new Image();
             img9 = new Image();
             img10 = new Image();
             img11 = new Image();
             img12 = new Image();
             img13 = new Image();
             img1.src = "images/homepics/001.png";
             img2.src = "images/homepics/002.png";
             img3.src = "images/homepics/003.png";
             img4.src = "images/homepics/004.png";
             img5.src = "images/homepics/005.png";
             img6.src = "images/homepics/006.png";
             img7.src = "images/homepics/007.png";
             img8.src = "images/homepics/008.png";
             img9.src = "images/homepics/009.png";
             img10.src = "images/homepics/010.png";
             img11.src = "images/homepics/011.png";
             img12.src = "images/homepics/012.png";
             img13.src = "images/homepics/013.png";
            }
        }
    }
