(function($){
    $.fn.extend({
        webtoolkitMenu: function(options) {
            return this.each(function() {

                var obj = $(this);

                $("li ul", obj).each(function(i) {
                    $(this).css('top', $(this).parent().outerHeight());
                })

                $("li", obj).hover(
                    function () { $(this).addClass('Over'); },
                    function () { $(this).removeClass('Over'); }
                );

            });
        }
    });
})(jQuery);

$(document).ready(function() {
        $('#BibigonV2NavigationMenu').webtoolkitMenu();
});
