(function($){$.fn.extend({
		Menu: 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) {
					var pos = $(this).parent().position()
					$(this).css('top', $(this).parent().outerHeight() + pos.top);
				})

				$("li", obj).hover(
					function () { $(this).addClass('over'); },
					function () { $(this).removeClass('over'); }
				);

			});
		}
	});
})(jQuery);
