// after the page has finished loading
$(document).ready(function(){

	$('.pic a').lightBox({
	// we call the lightbox method, and convert all the hyperlinks in the .pic container into a lightbox gallery

		imageLoading: '_assets/images/lightbox-ico-loading.gif',
		imageBtnClose: '_assets/images/lightbox-btn-close.gif',
		imageBtnPrev: '_assets/images/lightbox-btn-prev.gif',
		imageBtnNext: '_assets/images/lightbox-btn-next.gif'

	});

});
