var slideshow, slide_int_id, slide_current, slide_total;

slide_total = 18;
slide_current = 1;
var imageList = [
    {
        img: 'http://www.bgcirc.org/minigallery_26910/thumb/Johntaviousjpg',
        link: 'http://www.bgcirc.org/minigallery_26910/Johntaviousjpg'
    },
    {
        img: 'http://www.bgcirc.org/minigallery_26910/thumb/YOYjpg',
        link: 'http://www.bgcirc.org/minigallery_26910/YOYjpg'
    },
    {
        img: 'http://www.bgcirc.org/minigallery_26910/thumb/YOY-Verojpg',
        link: 'http://www.bgcirc.org/minigallery_26910/YOY-Verojpg'
    },
    {
        img: 'http://www.bgcirc.org/minigallery_26910/thumb/YOY-Teen-Centerjpg',
        link: 'http://www.bgcirc.org/minigallery_26910/YOY-Teen-Centerjpg'
    },
    {
        img: 'http://www.bgcirc.org/minigallery_26910/thumb/YOY-Joejpg',
        link: 'http://www.bgcirc.org/minigallery_26910/YOY-Joejpg'
    },
    {
        img: 'http://www.bgcirc.org/minigallery_26910/thumb/YOY4jpg',
        link: 'http://www.bgcirc.org/minigallery_26910/YOY4jpg'
    },
    {
        img: 'http://www.bgcirc.org/minigallery_26910/thumb/YOY3jpg',
        link: 'http://www.bgcirc.org/minigallery_26910/YOY3jpg'
    },
    {
        img: 'http://www.bgcirc.org/minigallery_26910/thumb/YOY2jpg',
        link: 'http://www.bgcirc.org/minigallery_26910/YOY2jpg'
    },
    {
        img: 'http://www.bgcirc.org/minigallery_26910/thumb/T-Johntavious-Alexjpg',
        link: 'http://www.bgcirc.org/minigallery_26910/T-Johntavious-Alexjpg'
    },
    {
        img: 'http://www.bgcirc.org/minigallery_26910/thumb/Sebastianjpg',
        link: 'http://www.bgcirc.org/minigallery_26910/Sebastianjpg'
    },
    {
        img: 'http://www.bgcirc.org/minigallery_26910/thumb/Johntavious-speakingjpg',
        link: 'http://www.bgcirc.org/minigallery_26910/Johntavious-speakingjpg'
    },
    {
        img: 'http://www.bgcirc.org/minigallery_26910/thumb/Johntavious-and-Ronniejpg',
        link: 'http://www.bgcirc.org/minigallery_26910/Johntavious-and-Ronniejpg'
    },
    {
        img: 'http://www.bgcirc.org/minigallery_26910/thumb/Joejpg',
        link: 'http://www.bgcirc.org/minigallery_26910/Joejpg'
    },
    {
        img: 'http://www.bgcirc.org/minigallery_26910/thumb/Joe-familyjpg',
        link: 'http://www.bgcirc.org/minigallery_26910/Joe-familyjpg'
    },
    {
        img: 'http://www.bgcirc.org/minigallery_26910/thumb/JM-and-Ronniejpg',
        link: 'http://www.bgcirc.org/minigallery_26910/JM-and-Ronniejpg'
    },
    {
        img: 'http://www.bgcirc.org/minigallery_26910/thumb/Ashtonjpg',
        link: 'http://www.bgcirc.org/minigallery_26910/Ashtonjpg'
    },
    {
        img: 'http://www.bgcirc.org/minigallery_26910/thumb/101jpg',
        link: 'http://www.bgcirc.org/minigallery_26910/101jpg'
    },
    {
        img: 'http://www.bgcirc.org/minigallery_26910/thumb/3-finalistsjpg',
        link: 'http://www.bgcirc.org/minigallery_26910/3-finalistsjpg'
    },
];

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;'
    },
];

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);
    }
}


