Reduce the secondary navigation menu to one level depth - from No Sidebar Pro's functions.php
//* Reduce the secondary navigation menu to one level depth
add_filter( 'wp_nav_menu_args', 'ns_secondary_menu_args' );
function ns_secondary_menu_args( $args ){
if( 'secondary' != $args['theme_location'] )
return $args;
$args['depth'] = 1;
return $args;
}