/**
 * Automatically add target="_blank" to links that have class="extern" or match specific file extensions.
 */
window.onload = function () {
	$('a').each(function () {
		if($(this).hasClass('extern') || $(this).attr('href').match(/\.pdf$/i))
			$(this).attr('target', '_blank');
	});
}
