(function($){
    $.fn.extend({
        //plugin name - animatemenu
        webtoolkitMenu: function(options) {
           
            return this.each(function() {
                //Assign current element to variable, in this case is UL element
                var obj = $(this);
                
                $("li ul", obj).each(function(i) {
                    //$(this).css('left', $(this).parent().outerWidth()+150);
                    //$(this).css('top', $(this).parent().outerHeight(options));
                    //$(this).css('top', 0);
                })


                    /*function() { $(this).addClass('over'); }
                );*/
                
                $("li", obj).hover(function () { $(this).addClass('over'); },  function () { $(this).removeClass('over'); });
                //alert($("li", obj).mouseover);
                
            });
        }
    });
})(jQuery);

