 $(document).ready(function(){
	 
	 $('a').click(function(){
	  if ( $(this).attr('rel') == 'external' )
	  {
	   window.open($(this).attr('href'));
	   return false;
	  } 
	 });
 
});
