diff --git a/app/views/static/site_map.html.erb b/app/views/static/site_map.html.erb
index 3fd564c10..0c7daac07 100644
--- a/app/views/static/site_map.html.erb
+++ b/app/views/static/site_map.html.erb
@@ -113,24 +113,36 @@
+
+ Profile
+ <% if CurrentUser.is_anonymous? %>
+ - <%= link_to "Sign in", new_session_path %>
+ - <%= link_to "Sign up", new_user_path %>
+ <% else %>
+ - <%= link_to "Profile", CurrentUser.user %>
+ - <%= link_to "Settings", edit_user_path(CurrentUser.user) %>
+ <% if CurrentUser.is_gold? %>
+ - <%= link_to "Change name", new_user_name_change_request_path %>
+ <% end %>
+ - <%= link_to "Delete account", maintenance_user_deletion_path %>
+ - <%= link_to "Dmails", dmails_path %>
+ - <%= link_to "Favorites", favorites_path %>
+ - <%= link_to "Favorite groups", favorite_groups_path %>
+ - <%= link_to "Saved searches", saved_searches_path %>
+ <% end %>
+ - <%= link_to "Upgrade information", new_user_upgrade_path %>
+
Users
<% if CurrentUser.is_moderator? %>
- <%= link_to("Dashboard", moderator_dashboard_path) %>
<% end %>
- <%= link_to("Help", wiki_pages_path(:title => "help:users")) %>
- - <%= link_to("Bans", bans_path) %>
- <%= link_to("Listing", users_path) %>
- <% unless CurrentUser.is_anonymous? %>
- - <%= link_to("Profile", user_path(CurrentUser.user)) %>
- - <%= link_to("Settings", edit_user_path(CurrentUser.user)) %>
- <% end %>
- <%= link_to("Search", search_users_path) %>
+ - <%= link_to("Bans", bans_path) %>
- <%= link_to("Feedback", user_feedbacks_path) %>
- - <%= link_to("Signup", new_user_path) %>
- <%= link_to("Terms of Service", terms_of_service_path) %>
- - <%= link_to("Upgrade Information", new_user_upgrade_path) %>
- - <%= link_to("Refresh counts", new_maintenance_user_count_fixes_path) %>