window.addEvent('domready', function() {
	isExternal = function(item) {
		if (item.get('href')) {
			if (item.get('href').contains('http://') || item.get('href').contains('https://')) {
				return true;
			}
		}
		return false;
		
	};
	
	$$('a').each(function(linkItem) {
		if (isExternal(linkItem) === true) {
			linkItem.set('target', '_blank');
		}
	});
});
