$(document).ready(function()
{
$('a[@rel="external"]').click(function(){
    open($(this).attr('href'));
    return false;
  });
});