(function ($) {
	$.fn.gothcnMenu = function (op) {
		var $$ = $(this);
		//$$.addClass('gothcn_menu');
		$('li:has(ul)', $$).hover(
			function() {
				$.extend(op['animation'], op['results_opacity']);
				$(this).children('ul').stop().animate(op['animation'], op['speed']);
			},
			function() {
				$(this).children('ul').stop().attr('style', 'display:none');
			}
		);
	};
})(jQuery);