/*

  Open external links is new window (the HTML 4.0 Strict and XHTML 1.0 Strict way)
  Code ideas: Kevin Yank, http://articles.sitepoint.com/article/standards-compliant-world

  Requires:
    jquery.js

  v1.0 20/07/2010, Hayo Baan
       Initial version

  v1.1 27/07/2010, Hayo Baan
       jQuery adaptations

*/

$(document).ready(function () {
    $("a[href*=][rel=external]").each(function (index) { this.target = "_blank"; });
});

