﻿function menuMouseOver(stufe, element) {
    if (stufe == 1) {
        //element.parentNode.parentNode.parentNode.style.backgroundColor = '#000000';
        //element.parentNode.parentNode.parentNode.getElementsByTagName('a')[0].style.color = '#ffffff';
    }

    if (stufe == 0) {
        if (element.parentNode.getElementsByTagName('ul').length > 0) {
            element.parentNode.getElementsByTagName('ul')[0].style.width = element.offsetWidth + 'px';
        }
        //element.style.color = '#ffffff';
    }
}
function menuMouseOut(stufe, element) {

    if (stufe == 1) {
        //element.parentNode.parentNode.parentNode.style.backgroundColor = '#ffffff';
        //element.parentNode.parentNode.parentNode.getElementsByTagName('a')[0].style.color = '#000000';
    }

    if (stufe == 0) {
        //element.style.color = '#000000';
    }
}	
