/* -------------------------------------------------------------
    AUTHOR: Stefan Nafra
    UPDATED: 30.06.2010
    CONTENT: Ermöglicht die DropDownFunktionalität des Webseitigen Mavigationsmenüs.
   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

$(function () {

    if ($.browser.msie && $.browser.version.substr(0, 1) < 8) {
        $('.window').append($('div.headmenu').css('top', '5px'));
    }

    $('ul.dropdownmenu > li').mouseenter(function () {
        $(this).children('ul').show().children('li').mouseenter(function () {
            $(this).children('ul').show();
        }).mouseleave(function () {
            $(this).children('ul').hide();
        });
        if ($.browser.msie && $.browser.version.substr(0, 1) < 7 && $(this).hasClass('menu2044')) {
            $('select').hide();
        }
    }).mouseleave(function () {
        $(this).children('ul').hide();
        if ($.browser.msie && $.browser.version.substr(0, 1) < 7 && $(this).hasClass('menu2044')) {
            $('select').show();
        }
    });
});