function menuInit()
{
    //$("ul.subnav").parent().append("<span></span>");
    
    $("ul.topnav li").each(function() {
        if ($(this).children('ul').length > 0) {
            $(this).children('a').each(function() {
                $(this).bind('mouseover', function() {return false;});
                $(this).bind('mouseover', function() {
                    $(this).parent().find("ul.subnav").slideDown('fast').show();
                    $(this).parent().hover(function() {
                    }, function() {
                        $(this).parent().find("ul.subnav").slideUp('slow');
                    });
                })
            });
        }
    });
}
