document.observe("dom:loaded",function(){
	$$('a[href!=""]').each(function(link){
        var siteregex = /^(http:\/\/)([a-z]*\.)?(mcc.gov)/i;
        if(link.readAttribute('href').startsWith('http://') &&
          !link.readAttribute('href').match(siteregex)){
           
		   var getLink = link.readAttribute('href');
		   
		   link.writeAttribute('id','external');
           link.writeAttribute('rel','external');
		   link.writeAttribute('href', 'http://www.mcc.gov/exit.php?url=' + getLink);
		}
    });
});