/**
 * From jQuery 1.3+ release, avoid (at) char
 */
/*
$(function(){
  $("a[rel*='external']").click(function(){
   this.target = "_blank";
  });
});*/
$(function() {
  $("a[href*='http://']:not([href*='"+location.hostname+"'])").click( function() {
  window.open(this.href);
  return false;
  });
});
//-->
