// dropdown menu workaround for IE/Win

window.onload = function() {
		if(!document.body.currentStyle) return;
		var subs = document.getElementsByTagName('a');
		for(var i=0; i<subs.length; i++) {
			if(subs[i].className.indexOf('submenu') > -1) {
				var li = subs[i].parentNode;				
				if(li && li.lastChild.style) {				
					li.onmouseover = function() {
						this.lastChild.style.display = 'block';
					}

					li.onmouseout = function() {
						this.lastChild.style.display = 'none';
					}
				}
			}
		}
	}