
     
     
// ++++++++++++++ mainmenu IE6 - start +++++++++++++++

function mOver(elem)
{
	var isIE6  = (navigator.appVersion.indexOf("MSIE 6.0") != -1) ? true : false;
	if(isIE6)
	{//LEFT: 150px; WIDTH: 105px; POSITION: absolute; TOP: 0px
		elem.childNodes[0].style.color="white";
		elem.childNodes[0].style.backgroundColor = '#59BB11';
		elem.lastChild.style.display = 'block';
		elem.lastChild.style.position = 'absolute';
		elem.lastChild.style.top = '0px';
		elem.lastChild.style.left='150px';
		elem.lastChild.style.width='150px';
	}
}
function mOut(elem)
{
	var isIE6  = (navigator.appVersion.indexOf("MSIE 6.0") != -1) ? true : false;
	if(isIE6)
	{
		elem.childNodes[0].style.color="#292B22";
		elem.childNodes[0].style.backgroundColor = '#48950B';
		elem.lastChild.style.display = 'none';
	}
}

function mOver2(elem)
{
	var isIE6  = (navigator.appVersion.indexOf("MSIE 6.0") != -1) ? true : false;
	if(isIE6)
	{//LEFT: 150px; WIDTH: 105px; POSITION: absolute; TOP: 0px
		//elem.childNodes[0].style.color="white";
		elem.childNodes[0].style.backgroundColor = '#59BB11';
		elem.lastChild.style.display = 'block';
		elem.lastChild.style.position = 'absolute';
		elem.lastChild.style.top = '0px';
		elem.lastChild.style.left='150px';
		elem.lastChild.style.width='150px';
	}
}
function mOut2(elem)
{
	var isIE6  = (navigator.appVersion.indexOf("MSIE 6.0") != -1) ? true : false;
	if(isIE6)
	{
		//elem.childNodes[0].style.color="#292B22";
		elem.childNodes[0].style.backgroundColor = '#48950B';
		elem.lastChild.style.display = 'none';
	}
}
  
// ++++++++++++++ mainmenu IE6 - end +++++++++++++++
