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

  $('#content #block1 .editor span a').click( function()
  {
    window.open( $(this).attr('href') );
    return false;
  });
});