/*

Because of the XHTML Strict doctype does not allow certain attributes,
this file will serve to correct them.

Requires jQuery
 
 */

$(function(){
	// fix for target="_blank"
	$("a[@rel^='external']").click(function(){
		return !window.open(this.href);
	});
});

