// xhtml strict workarround for target="_blank"
$(document).ready(function() {
  $('a[rel=external]').click(function() {
    window.open(this.href,'_blank'); return false;
  });
});

