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