window.onload = function() {
	/* IE menu fix */
	if (!document.body.currentStyle) return;
	var subs = document.getElementsByTagName("a");
	for (var i=0; i < subs.length; i++) {
		var li = subs[i].parentNode;
		if (li && li.lastChild.style && subs[i].className == 'submenu') {
			li.onmouseover = function() { this.lastChild.style.visibility = 'visible'; }
			li.onmouseout = function() { this.lastChild.style.visibility = 'hidden'; }
		}
	}
	/* IE menu fix end */
}