/*

	External Link Fix for deprecated <a> attribute

*/

$(function(){
	//External Links
	$('a[rel=external]').click(function(){
			window.open(this.href);
			return false;
	});
		
});
