Hi All,
Have a couple quick (and assuming pretty straightforward) questions related to the HeaderMenu.

1.) Right now my headermenu consists of: Home Page | New Products | My Account | Blog | Forums | Contact Us.  I want to create a new page called "Social" where I will add some Social components.  I assumed that I needed to first create my new page which I created in the Admin Module under Content Management \ Topics \ Add New.  I gave my new page a System Name of "Social".  When I created this page it gave it a URL of http://domainname/topic/11-.aspx .  First question... is there anyway to give this a better URL like http://domainname/social.aspx? Second question is...what is the correct way of adding the code required to add my new page as a new menu item the headermenu.ascx file?

2.) This has more to do with the formatting of the headermenu.  As I mentioned in #1, my menu consists of Home Page | New Products | My Account | Blog | Forums | Contact Us.  What I want to do is add an icon above each of these menu items. Basically I just need to create a table that has 2 rows and 6 columns.  The first row would be for icons which are associated to the menu item right below it.  Seems pretty simple but not sure how to modify the below code from the headermenu.ascx file to handle this.

<%@ Control Language="C#" AutoEventWireup="true" Inherits="NopSolutions.NopCommerce.Web.Modules.HeaderMenuControl"
    CodeBehind="HeaderMenu.ascx.cs" %>
<%@ Register TagPrefix="nopCommerce" TagName="SearchBox" Src="~/Modules/SearchBox.ascx" %>
<div class="headermenu">
    <!--<div class="searchbox">
        <nopCommerce:SearchBox runat="server" ID="ctrlSearchBox">
        </nopCommerce:SearchBox>
    </div>-->

    <ul class="topmenu">
        <li><a href="<%=CommonHelper.GetStoreLocation()%>">
            <%=GetLocaleResourceString("Content.HomePage")%></a> </li>
        <% if (this.ProductService.RecentlyAddedProductsEnabled)
           { %>
        <li><a href="<%=Page.ResolveUrl("~/recentlyaddedproducts.aspx")%>">
            <%=GetLocaleResourceString("Products.NewProducts")%></a> </li>
        <%} %>
        <!--<li><a href="<%=Page.ResolveUrl("~/search.aspx")%>">
            <%=GetLocaleResourceString("Search.Search")%></a> </li>-->
        <li><a href="<%= SEOHelper.GetMyAccountUrl()%>">
            <%=GetLocaleResourceString("Account.MyAccount")%></a> </li>
        <% if (this.BlogService.BlogEnabled)
           { %>
        <li><a href="<%= SEOHelper.GetBlogUrl()%>">
            <%=GetLocaleResourceString("Blog.Blog")%></a> </li>
        <%} %>
        <% if (this.ForumService.ForumsEnabled)
           { %>
        <li><a href="<%= SEOHelper.GetForumMainUrl()%>">
            <%=GetLocaleResourceString("Forum.Forums")%></a></li>
        <%} %>
        <li><a href="<%=Page.ResolveUrl("~/contactus.aspx")%>">
            <%=GetLocaleResourceString("ContactUs.ContactUs")%></a> </li>
         <li><a href="<%=Page.ResolveUrl("~/contactus.aspx")%>">
            <%=GetLocaleResourceString("ContactUs.ContactUs")%></a> </li>

    </ul>
</div>


As always, thanks everyone for the guidance!
Mark