/*
 * Set links matching http://www.facebook.com/pages/Colorado-Press-Association/177529815602114 ,  to open in new window
*/
function openExternalLinks() { 
	$$('a[href!=""]').each(function(link){ 
		if(link.href!='') {
			if(link.readAttribute('href').startsWith('http://www.facebook.com/pages/Colorado-Press-Association/177529815602114') || 
				link.readAttribute('href').startsWith('http://twitter.com/ColoradoPress') ||
				link.readAttribute('href').startsWith('http://twitter.com/#!/ColoradoPress') ||
				link.readAttribute('href').startsWith('http://hosted2.ap.org/atom/APDEFAULT/3d281c11a96b4ad082fe88aa0db04305')
				){ 
					link.setAttribute('target','_blank'); 
					link.setAttribute('rel','external'); 
			}			
		}
	}); 
} 
document.observe('dom:loaded', openExternalLinks); 

