/**
 * Application scripts (for public and admin).
 *
 * Requires Prototype 1.6.
 */

function hookExternalLinks() {
  $$('a[rel~=external]').invoke('writeAttribute', 'target', '_blank');
}

document.observe('dom:loaded', function() {
  hookExternalLinks();
});

