
// jQuery Functions
$(document).ready(function() {
    $('#metanavi li.dropdown').each(function() {
        $(this).attr('class', 'dropdown');
        $('div div',this).hide();
        $(this).click(function() {
            $(this).toggleClass('open');
            $('div div',this).slideToggle(100);
        });
    });
    $('#vertrieb li.dropdown').each(function() {
        $(this).attr('class', 'dropdown');
        $('div div',this).hide();
        $(this).click(function() {
            $(this).toggleClass('open');
            $('div div',this).slideToggle(100);
            return false;
        });
    });
});

