/**
 * If included in a page, turns all links with rel external attribute.
 * e.g. <a href="/home" rel="external">Home</a>
 */
$(document).ready(function(){
  $('a[rel="external"]').click( function() {
    window.open( $(this).attr('href') );
    return false;
  });
});