Index: nav-menu-template.php
===================================================================
--- nav-menu-template.php	(revision 15497)
+++ nav-menu-template.php	(working copy)
@@ -138,6 +138,7 @@
 
 	$defaults = array( 'menu' => '', 'container' => 'div', 'container_class' => '', 'container_id' => '', 'menu_class' => 'menu', 'menu_id' => '',
 	'echo' => true, 'fallback_cb' => 'wp_page_menu', 'before' => '', 'after' => '', 'link_before' => '', 'link_after' => '',
+	'title' => '', 'title_before' => '<h2>' , 'title_after' => '</h2>',
 	'depth' => 0, 'walker' => '', 'theme_location' => '' );
 
 	$args = wp_parse_args( $args, $defaults );
@@ -200,6 +201,7 @@
 	$items .= walk_nav_menu_tree( $sorted_menu_items, $args->depth, $args );
 	unset($sorted_menu_items);
 
+		
 	// Attributes
 	if ( ! empty( $args->menu_id ) ) {
 		$slug = $args->menu_id;
@@ -216,7 +218,11 @@
 	$attributes = ' id="' . $slug . '"';
 	$attributes .= $args->menu_class ? ' class="'. $args->menu_class .'"' : '';
 
+	if ( !empty( $title ) ) 
+		$nav_menu .= $title_before . $title . $title_after;
+		
 	$nav_menu .= '<ul'. $attributes .'>';
+	
 
 	// Allow plugins to hook into the menu to add their own <li>'s
 	$items = apply_filters( 'wp_nav_menu_items', $items, $args );
