/* When The DOM is ready */
$(function(){
	/* Iterate through each of the .gallery div's inside the #page-right div */
	$('#page-right .gallery').each(function(){
		/* Get this gallery's id from the id attribute */
		var $id = $(this).attr('id');
		/* Concatenate this together to make a selector, followed by a.lightbox, then Activate a lightbox on it*/
		$('#'+ $id + ' a.lightbox').lightBox();
	});
}); 
