 $(document).ready(function(){

	$('a').each(function() { 
		if ($(this).hasClass('_blank'))
		{
			$(this).attr('title', 'This link opens in a new window');
			$(this).bind('click', function () {
				window.open($(this).attr('href'), '_blank').focus(); 
				return false;
			});
		}
	});

	base_url = document.location.href.substring(0, document.location.href.indexOf(window.location.pathname.substring(window.location.pathname.lastIndexOf('/') + 1)), 0); 
	$(".lightbox").lightbox({
		fitToScreen: true,
		imageClickClose: true
	});	    

 });