diff --git a/indra/newview/llviewermenufile.cpp b/indra/newview/llviewermenufile.cpp
index b9293b3b3105f8c9a1ebaef7e2752b97df21728a..ec4562d31a6694e0fbe8dbd24ea28406af097c88 100644
--- a/indra/newview/llviewermenufile.cpp
+++ b/indra/newview/llviewermenufile.cpp
@@ -78,6 +78,24 @@
 // system libraries
 #include <boost/tokenizer.hpp>
 
+class LLBuildNavMesh  : public view_listener_t
+{
+	bool handleEvent(const LLSD& userdata)
+	{
+		bool result = true;
+		return result;
+	}
+};
+
+class LLFileUploadNavMesh  : public view_listener_t
+{
+	bool handleEvent(const LLSD& userdata)
+	{
+		llinfos<<"ok"<<llendl;
+		return true;
+	}
+};
+
 class LLFileEnableUpload : public view_listener_t
 {
 	bool handleEvent(const LLSD& userdata)
@@ -1284,5 +1302,7 @@ void init_menu_file()
 	view_listener_t::addMenu(new LLMeshEnabled(), "File.MeshEnabled");
 	view_listener_t::addMenu(new LLMeshUploadVisible(), "File.VisibleUploadModel");
 
+	//prep#
+	view_listener_t::addCommit(new LLFileUploadNavMesh(), "File.UploadNavMesh");
 	// "File.SaveTexture" moved to llpanelmaininventory so that it can be properly handled.
 }
diff --git a/indra/newview/skins/default/xui/en/menu_viewer.xml b/indra/newview/skins/default/xui/en/menu_viewer.xml
index 63e50b0b9f7ceba094b453f89d22adca97e917f5..b16b6afceb4d269a21eafff07346295f43981cb5 100644
--- a/indra/newview/skins/default/xui/en/menu_viewer.xml
+++ b/indra/newview/skins/default/xui/en/menu_viewer.xml
@@ -1092,6 +1092,14 @@
             <menu_item_call.on_visible
             function="File.VisibleUploadModel"/>
             </menu_item_call>
+          <menu_item_call
+            label="BuildNavMeshTest"
+            layout="topleft"
+            name="BuildNavMesh">
+            <menu_item_call.on_click
+             function="File.UploadNavMesh"
+             parameter="" />
+          </menu_item_call>
 	   <menu_item_call
              label="Bulk (L$[COST] per file)..."
              layout="topleft"