   $(document).ready(function() {
	 $('a.use-colorbox').colorbox({
	   href: this.href,
           title: (this.title == '') ? '' : this.title,
           transition: 'fade'
 	 });


$('a[href=species-mural-lightbox]').colorbox({
			          href: "species-mural p:first",
				  title: "Species Mural",
				  transition: 'fade'
			      });

			    // Want to lightbox all main content images on
			    // about-the-pinebush/origins-of-the-pine-bush-2
			    if (currentUrlPath == '/origins-of-the-pine-bush-2') {
			    $('div.content-rpt.uneven img').each(function() {
				   $(this).colorbox({
               				     href: $(this).attr('src'),
		                             title: $(this).attr('alt'),
					     transition: 'fade'
				   });
                            });
			    }
   });

