(function($){
	$(document).ready(function(){
		$('#logo_img').ifixpng();
		$('#bd a').each(function(){
			var href = $(this).attr('href');
			var pdf_regex = /\.pdf$/i;
			var pdf_match_result = href.match(pdf_regex);
			if (href.indexOf(base_url) == -1 && href.indexOf('http') != -1 && pdf_match_result == null) $(this).attr('target', '_blank');
			if (href.indexOf('/give/donate/') != -1) $(this).attr('target', '_blank');
			if (pdf_match_result != null && $(this).parent().is('li')) $(this).addClass('pdf');
		});
	});
})(jQuery);