// class to cope with StrctBlank - converts target of external link elements to _blank and adds no follow
StdsStrictBlank = new Class({
	initialize:function(){
		$$('a[href^="http://"]').each( function(item, index){
			if ( !item.href.contains(window.location.host) && !(/^mailto:/gi).test(item.href) ) {
				item.setProperties({
					rel: 'nofollow',
					target: '_blank'
				});
			}
		}, this);
	}
}, this);