$(function(){  
	$("a[href*='http://']:not([href*='"+location.hostname+"'])").attr("target","_blank");
	$("a[href*='https://']:not([href*='"+location.hostname+"'])").attr("target","_blank");
	$("a[href$='.pdf']").addClass("pdf");
	$("a[href$='.doc']").addClass("doc");
	$("a[href$='.jpg']").addClass("jpg");
	$("a[href$='.JPG']").addClass("jpg");
	$('.content a').each(function() {
    	$(this).attr("title", $(this).text());
        });
    $('.sub li a').each(function() {
    	$(this).attr("title", $(this).text());
        });
});