﻿function initGallery(){
    for(var cImg=0; cImg<(All_Photo.length); cImg++){
        var aIMG = document.createElement('img');
        aIMG.src = 'http://shulmanphoto.co.il'+ All_Photo[cImg][0];
        aIMG.alt = All_Photo[cImg][2];
        aIMG.setAttribute('width', '132');
        aIMG.setAttribute('height', '132');
        
        var aLink = document.createElement('a');
        aLink.setAttribute('rel', 'lightbox[gallery]');
        aLink.setAttribute('href', 'http://shulmanphoto.co.il'+ All_Photo[cImg][1]);
        aLink.setAttribute('title', All_Photo[cImg][2]);
        aLink.appendChild(aIMG);
        
        document.getElementById('GalleryList').appendChild(aLink);
    }
}
