// JavaScript Document
jQuery.noConflict();
jQuery(document).ready(function() {
	jQuery("a[href*=.pdf]").attr('target','_blank');
	jQuery("a[href*='http://']:not([href*='"+location.hostname+"'])").attr("target","_blank");
});