(function($){  
	$.fn.mainMenu = function() {
		var clickSubmenu = function(e) {
			return false;
		};
		var showSubmenu = function(e) {
			$('ul ul', e.data.obj).hide();
			$(this).parent().children('ul').show();
			return false;
		};
		
		return this.each(function() {
			var obj = $(this);
			
			$('ul ul', obj).each(function() {
				$(this).parent().children('a').bind('click', {obj: obj}, clickSubmenu);				
			});
			$('ul ul', obj).each(function() {
				$(this).parent().children('a').bind('mouseover', {obj: obj}, showSubmenu);				
			});
		});
	}
})(jQuery);
