/**
 * Workaround für li:hover im IE6
 * @param	string		sElementId		Die Id des Elements, das eingeblendet werden soll;		Standard: ---;		Status: obligatorisch;
 */
function ShowSubNavigationInIe6(sElementId) {
	oElement				 = window.document.getElementById(sElementId);

	if(navigator.userAgent.search(/MSIE 6/) != -1 && oElement) {
		oElement.style.display		 = 'block';
		oElement.style.left		 = '4px';
//		if(oElement.offsetWidth < 200) {
//			oElement.style.width	 = '200px';
//		}
	}

/*	if(oElement.offsetParent.offsetLeft + oElement.offsetWidth > window.document.getElementById('TopNavigation').offsetWidth) {
		oElement.style.left		 = 'auto';
		oElement.style.right		 = '0';
	}
*/
}

/**
 * Workaround für li:hover im IE6
 * @param	string		sElementId		Die Id des Elements, das eingeblendet werden soll;		Standard: ---;		Status: obligatorisch;
 */
function HideSubNavigationInIe6(sElementId) {
	if(navigator.userAgent.search(/MSIE 6/) != -1 && window.document.getElementById(sElementId)) {
		window.document.getElementById(sElementId).style.display	= 'none';
	}
}
