// JavaScript Document

// Set up and run JQuery Lightbox for maps
$(function() {
	// This, or...
	$('#peopleGallery a').lightBox({ // Select all links in object with gallery ID
	overlayBgColor: '#000',
	overlayOpacity: 0.6,
	imageLoading: 'images/lightbox/lightbox-ico-loading.gif',
	imageBtnClose: 'images/lightbox/lightbox-btn-close.gif',
	imageBtnPrev: 'images/lightbox/lightbox-btn-prev2.gif',
	imageBtnNext: 'images/lightbox/lightbox-btn-next2.gif',
	containerResizeSpeed: 350,
	txtImage: 'Image',
	txtOf: 'of'
	});
});

$(function() {
	// This, or...
	$('#projectGallery a').lightBox({ // Select all links in object with gallery ID
	overlayBgColor: '#000',
	overlayOpacity: 0.6,
	imageLoading: 'images/lightbox/lightbox-ico-loading.gif',
	imageBtnClose: 'images/lightbox/lightbox-btn-close.gif',
	imageBtnPrev: 'images/lightbox/lightbox-btn-prev2.gif',
	imageBtnNext: 'images/lightbox/lightbox-btn-next2.gif',
	containerResizeSpeed: 350,
	txtImage: 'Image',
	txtOf: 'of'
	});
});


