(function($) {
	$.fn.extend( {
		buildMenu : function() {
			return this.find('li').each(function() {
				$(this).find('ul').hide();
				$(this).mouseenter(function() {
					$(this).find('ul').show(100);
				}).mouseleave(function() {
					$(this).find('ul').hide(100);
				});
			});
		}
	});
})(jQuery);
