var nc    =  !!(document.captureEvents  && !document.getElementById);
var nc6   =  !!(document.captureEvents  && document.documentElement);
var op6   =  !!(document.getElementById && !document.documentElement);
var op7   =  !!(window.opera && /Opera( |\/)7/i.exec(navigator.userAgent));
var ie    =  !!document.all;
var ie4   =  !!(document.all           && !document.documentElement);
var ie5   =  !!(document.all           && document.documentElement);
var dom   =  !!document.getElementById;
var mac   =  !!(navigator.userAgent.indexOf("Mac")!=-1);
var docEl =  (document.documentElement && document.all && typeof document.compatMode != "undefined" && document.compatMode !=  "BackCompat")? "documentElement" : "body";

window.onload = function() {
	
	
	$$('a[href^=http]').each(function(a) {
		
	    if (window.location.hostname) {
	        var hostname = window.location.hostname.replace("www.", "").toLowerCase();
	        //alert(hostname);
	        //alert(a.get('href'));
	        //if (!a.get('href').contains(hostname)) {
	            
	        	a.set({
	                'target': '_blank'
	            });
	            
	        //}
	    }
	});
	
};
