/** This code apply the lightbox effect to the gallery */
$(document).ready(function() {
	applyLightbox();
});

applyLightbox = function () {
	$('.gallery a').lightBox();
}