$(document).ready(function(){
	var h = window.location.host.toLowerCase();
	$("a[href^='http']:not([href*='" + h + "']), a[href$='.pdf']").attr("target", "_blank");
	$('a[href^="http://"]').addClass('externalLink');
	$("img").parent().removeClass('externalLink');
	$('a[href^="mailto:"]').addClass('emailLink');
	$('a[href*=.pdf]').attr({"target":"_blank"});
	$('a[href*=.pdf]').addClass('pdfLink');
	$("li:last-child").addClass('last');
	$("li:first-child").addClass('first');
});