$(function() {
   $('#gallery a').lightBox({
    overlayOpacity: 0,
	imageLoading: '/style/images/lightbox-ico-loading.gif',
	imageBtnClose: '/style/images/lightbox-btn-close.gif',
	imageBtnPrev: '/style/images/lightbox-btn-prev.gif',
	imageBtnNext: '/style/images/lightbox-btn-next.gif',
	containerBorderSize: 30,
   });
   $("a[href^=http://]").after(" <img src='/style/images/external-link.png' width='12' height='12' alt='External Link' />");
   $("a[href*=.pdf]").after(" <img src='/style/images/pdf.png' width='16' height='16' alt='PDF Document' />");
   $("a[href*=.pdf], a[href^=http://]").click(function(){
		window.open(this.href);
		return false;
	});
});
