$.fn.submenu = function() {
	return this.each(function() {
		var $$ = $(this), _u = $('ul.submenu', this), o = $$.position(), h = $$.outerHeight();
		o.top += h;
		_u.css(o);
		
		$$.hover(function() {
			_u.show();
		}, function() {
			_u.hide();
		});
		
		return $$;
	});
};