var slideshow, slide_int_id, slide_current, slide_total;

slide_total = 19;
slide_current = 1;
var imageList = [
    {
        img: 'http://www.nvacs.com/minigallery_27665/thumb/bblee.jpg',
        link: 'http://www.nvacs.com/minigallery_27665/bblee.jpg'
    },
    {
        img: 'http://www.nvacs.com/minigallery_27665/thumb/terryveazey.jpg',
        link: 'http://www.nvacs.com/minigallery_27665/terryveazey.jpg'
    },
    {
        img: 'http://www.nvacs.com/minigallery_27665/thumb/tcwm.jpg',
        link: 'http://www.nvacs.com/minigallery_27665/tcwm.jpg'
    },
    {
        img: 'http://www.nvacs.com/minigallery_27665/thumb/superiorchurch.jpg',
        link: 'http://www.nvacs.com/minigallery_27665/superiorchurch.jpg'
    },
    {
        img: 'http://www.nvacs.com/minigallery_27665/thumb/sthelenaumc.jpg',
        link: 'http://www.nvacs.com/minigallery_27665/sthelenaumc.jpg'
    },
    {
        img: 'http://www.nvacs.com/minigallery_27665/thumb/sidpeterson.jpg',
        link: 'http://www.nvacs.com/minigallery_27665/sidpeterson.jpg'
    },
    {
        img: 'http://www.nvacs.com/minigallery_27665/thumb/newmovers.jpg',
        link: 'http://www.nvacs.com/minigallery_27665/newmovers.jpg'
    },
    {
        img: 'http://www.nvacs.com/minigallery_27665/thumb/jimwilsonevangelist.jpg',
        link: 'http://www.nvacs.com/minigallery_27665/jimwilsonevangelist.jpg'
    },
    {
        img: 'http://www.nvacs.com/minigallery_27665/thumb/indiago.jpg',
        link: 'http://www.nvacs.com/minigallery_27665/indiago.jpg'
    },
    {
        img: 'http://www.nvacs.com/minigallery_27665/thumb/fcpfellowship.jpg',
        link: 'http://www.nvacs.com/minigallery_27665/fcpfellowship.jpg'
    },
    {
        img: 'http://www.nvacs.com/minigallery_27665/thumb/ecfwired.jpg',
        link: 'http://www.nvacs.com/minigallery_27665/ecfwired.jpg'
    },
    {
        img: 'http://www.nvacs.com/minigallery_27665/thumb/ecf.jpg',
        link: 'http://www.nvacs.com/minigallery_27665/ecf.jpg'
    },
    {
        img: 'http://www.nvacs.com/minigallery_27665/thumb/davidshelton.jpg',
        link: 'http://www.nvacs.com/minigallery_27665/davidshelton.jpg'
    },
    {
        img: 'http://www.nvacs.com/minigallery_27665/thumb/coj.jpg',
        link: 'http://www.nvacs.com/minigallery_27665/coj.jpg'
    },
    {
        img: 'http://www.nvacs.com/minigallery_27665/thumb/christiansongwriterstudio.jpg',
        link: 'http://www.nvacs.com/minigallery_27665/christiansongwriterstudio.jpg'
    },
    {
        img: 'http://www.nvacs.com/minigallery_27665/thumb/carenetirc.jpg',
        link: 'http://www.nvacs.com/minigallery_27665/carenetirc.jpg'
    },
    {
        img: 'http://www.nvacs.com/minigallery_27665/thumb/brentwoodbooks.jpg',
        link: 'http://www.nvacs.com/minigallery_27665/brentwoodbooks.jpg'
    },
    {
        img: 'http://www.nvacs.com/minigallery_27665/thumb/bestchurch.jpg',
        link: 'http://www.nvacs.com/minigallery_27665/bestchurch.jpg'
    },
    {
        img: 'http://www.nvacs.com/minigallery_27665/thumb/wwcact.jpg',
        link: 'http://www.nvacs.com/minigallery_27665/wwcact.jpg'
    },
];

var captionList = [
    {
        num: '0',
        cap: '&nbsp;'
    },
    {
        num: '1',
        cap: '&nbsp;'
    },
    {
        num: '2',
        cap: '&nbsp;'
    },
    {
        num: '3',
        cap: '&nbsp;'
    },
    {
        num: '4',
        cap: '&nbsp;'
    },
    {
        num: '5',
        cap: '&nbsp;'
    },
    {
        num: '6',
        cap: '&nbsp;'
    },
    {
        num: '7',
        cap: '&nbsp;'
    },
    {
        num: '8',
        cap: '&nbsp;'
    },
    {
        num: '9',
        cap: '&nbsp;'
    },
    {
        num: '10',
        cap: '&nbsp;'
    },
    {
        num: '11',
        cap: '&nbsp;'
    },
    {
        num: '12',
        cap: '&nbsp;'
    },
    {
        num: '13',
        cap: '&nbsp;'
    },
    {
        num: '14',
        cap: '&nbsp;'
    },
    {
        num: '15',
        cap: '&nbsp;'
    },
    {
        num: '16',
        cap: '&nbsp;'
    },
    {
        num: '17',
        cap: '&nbsp;'
    },
    {
        num: '18',
        cap: '&nbsp;'
    },
];

function startLytebox(title, url) {
      var anchor = this.document.createElement('a');
      anchor.setAttribute('title', title);
      anchor.setAttribute('href', url);
      anchor.setAttribute('rel', 'lytebox');
      myLytebox.start(anchor, false, false);
      return false;
}

function SlideShow_event(e, arg){
	e = e || window.event;
	switch(e){
		case 'ready':
			for(var i = 0, l = imageList.length; i < l; i++){
				slideshow.addImage(imageList[i].img, imageList[i].link);
			}
			break;

		case 'image_change':
			var imagenumber = arg+1;
			document.getElementById('mininav').innerHTML='Picture '+imagenumber+' of '+slide_total
			document.getElementById('minicap').innerHTML = captionList[arg].cap;
			break;

		case 'image_click':
			startLytebox(captionList[arg].cap,imageList[arg].link);			break;

		default:
			alert(e);
    }
}


