﻿var NumberOfImages = 40

var img = new Array(NumberOfImages)

img[0] = "images/reeks2/foto_01_groot.jpg"
img[1] = "images/reeks2/foto_02_groot.jpg"
img[2] = "images/reeks2/foto_03_groot.jpg"
img[3] = "images/reeks2/foto_04_groot.jpg"
img[4] = "images/reeks2/foto_05_groot.jpg"
img[5] = "images/reeks2/foto_06_groot.jpg"
img[6] = "images/reeks2/foto_07_groot.jpg"
img[7] = "images/reeks2/foto_08_groot.jpg"
img[8] = "images/reeks2/foto_09_groot.jpg"
img[9] = "images/reeks2/foto_10_groot.jpg"
img[10] = "images/reeks2/foto_11_groot.jpg"
img[11] = "images/reeks2/foto_12_groot.jpg"
img[12] = "images/reeks2/foto_13_groot.jpg"
img[13] = "images/reeks2/foto_14_groot.jpg"
img[14] = "images/reeks2/foto_15_groot.jpg"
img[15] = "images/reeks2/foto_16_groot.jpg"
img[16] = "images/reeks2/foto_17_groot.jpg"
img[17] = "images/reeks2/foto_18_groot.jpg"
img[18] = "images/reeks2/foto_19_groot.jpg"
img[19] = "images/reeks2/foto_20_groot.jpg"
img[20] = "images/reeks2/foto_34_groot.jpg"
img[21] = "images/reeks2/foto_35_groot.jpg"
img[22] = "images/reeks2/foto_36_groot.jpg"
img[23] = "images/reeks2/foto_37_groot.jpg"
img[24] = "images/reeks2/foto_38_groot.jpg"
img[25] = "images/reeks2/foto_39_groot.jpg"
img[26] = "images/reeks2/foto_40_groot.jpg"
img[27] = "images/reeks2/foto_41_groot.jpg"
img[28] = "images/reeks2/foto_42_groot.jpg"
img[29] = "images/reeks2/foto_43_groot.jpg"
img[30] = "images/reeks2/foto_44_groot.jpg"
img[31] = "images/reeks2/foto_45_groot.jpg"
img[32] = "images/reeks2/foto_46_groot.jpg"
img[33] = "images/reeks2/foto_47_groot.jpg"
img[34] = "images/reeks2/foto_48_groot.jpg"
img[35] = "images/reeks2/foto_49_groot.jpg"
img[36] = "images/reeks2/foto_50_groot.jpg"
img[37] = "images/reeks2/foto_51_groot.jpg"
img[38] = "images/reeks2/foto_52_groot.jpg"
img[39] = "images/reeks2/foto_53_groot.jpg"


var imgNumber = 0

function NextImage() {
    imgNumber++
    if (imgNumber == NumberOfImages)
        imgNumber = 0
    document.images["VCRImage"].src = img[imgNumber]
}

function PreviousImage() {
    imgNumber--
    if (imgNumber < 0)
        imgNumber = NumberOfImages - 1
    document.images["VCRImage"].src = img[imgNumber]
}

