// Associate images with poems using the jQuery lightbox_me plugin

jQuery(function($) {
 		$('.moreinfo').click(function() {
 			$('#moreinfo').lightbox_me({centered: true});
 			return false;
 		});
		
 }); 