// fix for target=”_blank” since its not supported on current document type (xhtml strict), every external link should now have the attribute rel set to external. ex: <a href="#" rel="external"></a>
$(function(){
	$("a[@rel~='external']").click(function(){
		window.open($(this).attr("href"));
		return false;
	});
});
