jQuery(document).ready(function(ev){	
	jQuery('.news-body a'||'.news-list a').each(function(idx){
		var url = jQuery(this).attr('href');
		myNum = url.lastIndexOf(".pdf");
			
		if(myNum != -1){
			jQuery(this).attr('target','_blank');
		}
	jQuery('a[href^=http]').not('[href*="'+location.hostname+'"]').attr('target','_blank');
	});
});
jQuery(document).ready( function () {
	jQuery("a[href^=http]").not("[href*="+location.hostname+"]").attr("target","_blank");
})
/*
jQuery(document).ready( function () {
	jQuery('a[href^=http]').not('[href*="'+location.hostname+'"]').attr('target','_blank');
})
*/
