window.onload = function () {
	linkIcons();
	menuHover();
}

function linkIcons() {
	var elem = document.getElementById('article');
	if (!elem)
		return;

	var links = elem.getElementsByTagName('a');
	for (var i = 0, link; link = links[i]; i++) {
		if (link.href.indexOf(document.domain) == -1 &&
			link.href.indexOf("mailto:") == -1) {
			link.target = '_blank';
			link.className = 'offsite';
			link.title = '(Link avaneb uues aknas)';
		}
	}
}

function menuHover() {
	if (document.all && document.getElementById) {
		navRoot = document.getElementById("menu");
		for (i=0; i < navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}