		if (document.getElementById('bl2')) {
			jQuery('#bl2').click(function(e) {
				e.preventDefault();
				var selectedItems = new Array();
				//the following line grabs all a tags under the id #light-box bear and builds an array 
				//with each value being an array itself with a single value of the link href
				jQuery("#lightbox-beer a").each(function() {selectedItems.push(newArray=[jQuery(this).attr('href')]);});
				//console.log(selectedItems);
				jQuery.slimbox(selectedItems, 0, {loop: true});
			});
		}
