// JavaScript Document

  // THIS SECTION PRELOADS THE IMAGES

    var fotoPath = "images/";
    var fotoPics = new Array;
    fotoPics[0] = new Array("_TESTS/foto.png",192,122);
    fotoPics[1] = new Array("_TESTS/film.png",192,122);
    fotoPics[2] = new Array("foto/FOTO_PAGE_1.jpg",970,640);
    fotoPics[3] = new Array("film/film_Tlo1.jpg",970,640);
    fotoPics[4] = new Array("FRONT/front_tlo_1.jpg",970,640);
    fotoPics[5] = new Array("contact/contact_tlo3.jpg",970,640);
    fotoPics[6] = new Array("foto/fotoNavbar/FOTO_PAGE_01.png",179,103);
    fotoPics[7] = new Array("foto/fotoNavbar/FOTO_PAGE_02.png",236,95);
    fotoPics[8] = new Array("foto/fotoNavbar/FOTO_PAGE_03.png",264,95);
    fotoPics[9] = new Array("foto/fotoNavbar/FOTO_PAGE_04.png",291,95);
    fotoPics[10] = new Array("foto/fotoAlbum/slideshow(2).jpg",594,395);
    fotoPics[11] = new Array("foto/controls/prev.png",93,40);
    fotoPics[12] = new Array("foto/controls/next.png",93,40);
    fotoPics[13] = new Array("foto/controls/pause.png",93,40);
    fotoPics[14] = new Array("foto/controls/play.png",93,40);
    fotoPics[15] = new Array("film/film_menu/FOTO_PAGE_01.png",191,108);
    fotoPics[16] = new Array("film/film_menu/FOTO_PAGE_02.png",221,108);
	fotoPics[17] = new Array("film/film_menu/FOTO_PAGE_03.png",241,108);
	fotoPics[18] = new Array("film/film_menu/FOTO_PAGE_04.png",317,108);
	fotoPics[19] = new Array("FRONT/navbar/FRONT_01.png",204,102);
	fotoPics[20] = new Array("FRONT/navbar/FRONT_02.png",235,102);
	fotoPics[21] = new Array("FRONT/navbar/FRONT_03.png",241,102);
	fotoPics[22] = new Array("FRONT/navbar/FRONT_04.png",290,102);
	fotoPics[23] = new Array("FRONT/boxTlo.jpg",245,174);
	fotoPics[24] = new Array("contact/menu/images/Untitled-2_01.jpg",230,126);
	fotoPics[25] = new Array("contact/menu/images/Untitled-2_02.jpg",244,126);
	fotoPics[26] = new Array("contact/menu/images/Untitled-2_03.jpg",224,126);
	fotoPics[27] = new Array("contact/menu/images/Untitled-2_04.jpg",272,126);						
	fotoPics[28] = new Array("foto/blank.png",594,38);	
	fotoPics[29] = new Array("foto/opis/1.png",594,38);
	fotoPics[30] = new Array("foto/opis/2.png",594,38);
	fotoPics[31] = new Array("foto/opis/3.png",594,38);
	fotoPics[32] = new Array("foto/opis/4.png",594,38);
	fotoPics[33] = new Array("foto/opis/5.png",594,38);
	fotoPics[34] = new Array("foto/opis/6.png",594,38);
	fotoPics[35] = new Array("foto/opis/7.png",594,38);
	fotoPics[36] = new Array("foto/opis/8.png",594,38);
	fotoPics[37] = new Array("foto/opis/9.png",594,38);
	fotoPics[38] = new Array("foto/opis/10.png",594,38);
	fotoPics[39] = new Array("foto/opis/11.png",594,38);
	fotoPics[40] = new Array("foto/opis/12.png",594,38);
	fotoPics[41] = new Array("foto/opis/13.png",594,38);
	fotoPics[42] = new Array("foto/opis/14.png",594,38);
	fotoPics[43] = new Array("foto/opis/15.png",594,38);
	fotoPics[44] = new Array("foto/opis/16.png",594,38);
	fotoPics[45] = new Array("foto/opis/17.png",594,38);
	fotoPics[46] = new Array("foto/opis/18.png",594,38);
	
	
	
	
	
    var myPics = preloadImages(fotoPath,fotoPics);

    function preloadImages(path,pics) {

        var images = new Array;

        for (var picNum=0; picNum<pics.length; picNum++)
            {
            images[picNum] = new Image(pics[picNum][1],pics[picNum][2]);
            images[picNum].src = (path + pics[picNum][0]);
            }

        return (images);
    }