// IE!!!!!!!!!!!1
window.attachEvent("onload", function() {
	var thisPage = new RegExp("^"+location.protocol+"//"+location.host+location.pathname, "i");
	var a		 = document.getElementsByTagName("a");
	for(var i=0; i<a.length; i++) {
		var href = a[i].getAttribute("href");
		if(href && !(href.match(thisPage) || href.match(/^#|\?/))) {
			(function(a) {
				a.attachEvent("onclick", function() { if(window.event.srcElement.tagName !== "A") window.location = a.href; });
			})(a[i]);
		}
	}
});

