<!-- 
/*	function cssmenu_fix_height() { 
		var prop_count = 0; 
		for (i in KT_cssmenus) { 
			prop_count++; 
		} 
		if (prop_count == 0) { 
			setTimeout('cssmenu_fix_height()', 100); 
			return; 
		} else { 
			for (i in KT_cssmenus) { 
				var m = KT_cssmenus[i]; 
				if (m.options.type == 'vertical') { 
					divs = m.div; 
					if (divs.offsetHeight) { 
						var divHeight = divs.offsetHeight; 
					} else if (divs.style.pixelHeight) { 
						var divHeight = divs.style.pixelHeight; 
					} 
					m.dummy.style.height = divHeight + 'px'; 
				} 
			}; 
		} 
		cssmenu_page_resize(); //multiple vertical menus fix 
	} 
	utility.dom.attachEvent2(window, 'onload', cssmenu_fix_height); */
//--> 
