function enableDropdownMenuForIE() {
	if (document.all) {
		uls = document.getElementsByTagName('UL');
		for(i = 0; i < uls.length; i++) {
			if (uls[i].className == 'dropdown') {
				var lis = uls[i].getElementsByTagName('li');
				for (j = 0; j < lis.length; j++) {
					if (lis[j].className!='selected' && lis[j].parentNode.className=='dropdown') {
						if (lis[j].lastChild.tagName == 'UL') {
							lis[j].onmouseover = function() { this.lastChild.style.display = 'block'; this.style.background = 'url(elements/underdog_frame.gif) no-repeat'; }
							lis[j].onmouseout = function() { this.lastChild.style.display = 'none'; this.style.background = ''; }
						} else {
							lis[j].onmouseover = function() { this.style.background = 'url(elements/underdog_frame.gif) no-repeat'; }
							lis[j].onmouseout = function() { this.style.background = ''; }
						}
					}
				}
			}
		}
	}
}