// Opens links in new windows without using depricated HTML and allows links to be accessible to boot //

jQuery(document).ready(function() {
	jQuery('a[@rel*="external"]').click(function() {
	 var eLink = this.href;
	 window.open(eLink);
	 return false;
	});
});