function remoteLinks () {
  for (var i=0; i<=(document.links.length-1); i++) {
    if(document.location.hostname != document.links[i].hostname) {
      if(document.links[i].target != '_self') {
		  document.links[i].target = 'new';
	  }
    }
  }
}
