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

jQuery(document).ready(function() {
	
	// Adding a title to each link that opens in a new window
	jQuery('a[@rel*="external"]').attr({
			title: "This link will open in a new browser window"
		});
	
	// Opening the link in a new window
	jQuery('a[@rel*="external"]').click(function() {
	 var eLink = this.href;
	 window.open(eLink);
	
	// removing the default behavior of the link
	 return false;
	});
});