function turnOnMenu() {
	var menu = document.getElementById('topmenu').getElementsByTagName('LI');
	
	for(var i = 0; i < menu.length; i++) {
		menu[i].onmouseover = function() {
			this.style.backgroundColor = '#fff';
			var el = this.getElementsByTagName('UL')[0];
			if(el != null) {
				el.style.display='block';
				el.style.position = 'absolute';
				el.className = 'show';
			}
		}	
		menu[i].onmouseout = function() {
			this.style.backgroundColor = '#A9C1CF';
			var el = this.getElementsByTagName('UL')[0];
			if(el != null) {
				el.style.display='none';
				//el.className = 'hide';
			}
		}	
	}
	
}
