// fix links so they can be redirected to a new window using the 
// unsupported "target" attribute of <a> tags in strict html 4.01

jQuery(function($) {
	$("a.newWindow,a.linkNovaJanela").attr("target", "_blank");
});
