function ie_initlink(element) {
	element.style.textDecoration = "none";
	element.style.fontWeight = "normal";
}

function ie_enterlink() {
	 this.style.textDecoration = "underline";
	 this.style.fontWeight = "bold";
}

function ie_leavelink() {
	 this.style.textDecoration = "none";
	 this.style.fontWeight = "normal";
}

function ie_initlinks() {
	for(i=0; i < window.document.links.length; i++) {
		if(window.document.links[i].className == "menuitem") {
			ie_initlink(window.document.links[i]);
			window.document.links[i].onmouseover = ie_enterlink;
			window.document.links[i].onmouseout  = ie_leavelink;
		}
	}
}

function initlinks() {
	regexp_ie = /Internet Explorer/i;
	if(regexp_ie.test(window.navigator.appName)) ie_initlinks();
}

