// used with jquery
$(document).ready(function() {
	// manage the target="_blank" error that's not permitted in xhtml strict
	// USAGE: substitute the target="_blank" in the <a> with class="target_blank" 
	$('.target_blank').attr("target","_blank");
});
