Choosing A Data Source
Once you have add the menu you will be confronted with a dialog window that wants you to select a data source. Here we are going to be using the sitemap file that was created but you are going to have to create new DataSource which serves as a link between the menu and the sitemap file:

In the drop down you want to select Choose Data Source which will popup the Data Source Configuration Wizard:

You want to select SiteMap and give you source and id, then select ok. Because you created the Web.sitemap file, the data source will use it. You should now see the home menu item:

Where Are All Of The Menu Items?
At this point you may be wondering where are off your menu items are. Remember that the sitemap file had a siteMapNode called called home. This is what is being displayed. Remeber also, that home was duplicated as a child of the first node called home. As a matter of fact all nodes are child nodes of home.
To view all of the menu items select the data source and view it's properties. You want to chage ShowStartingNode from true to false:

Now all of your menu items should be displayed. On thing to note and that is by default the menu will display in a vertical fashion.
Orientation
The orientation property allows you to set the menu from vertical to horizontal. This can be found in the properties of the menu control not the data source control. If you are going with a horizontal ortienation you may want to add some spacing between the menu items. This can be done by changing the item spacing property of the menu which is a sub property of StaticMenuItemStyle:

Now your meny should look something like this:

Auto Formatting Menu Style
While this menu is functional it is not very appealing. You can change the way the men looks by using the auto format option. To do this click on the right facing arrow found to the right of the menu and select Auto Format

You will find there are several appealing styles to choose from. Here is an example of the classic style on the page running in the web browser:

Apply Custom Styles
The Menu control supports an almost daunting number of styles that can easily seem overwhelming. However, by learning a few key concepts and associated terminology for the Menu you will find the styles versatile and easy to use. A Menu is composed of one or many MenuLevels and each MenuLevel can contain one or more MenuItem. The Menu control supports setting styles on individual MenuItems or individual MenuLevels and MenuSubLevels, however most web sites that use pop-out Menus typically have one look and feel for the portion of the Menu that is statically displayed on the web page and another look and feel for the portion of the Menu that is dynamically displayed on the webpage. To simplify setting the styles for all MenuLevels and MenuItems that appear statically and all MenuLevels and MenuItems that appear dynamically the Menu control supports the following style properties:
- Static/DynamicMenuStyle The MenuStyle sets the properties that control the corresponding Menu think of it as the style for the box that contains all of the MenuItems. In addition to the traditional style properties it also includes HorizontalPadding and VerticalPadding.
- DynamicMenuItemStyle The MenuItemStyle sets the properties that control the display of the individual MenuItems contained in the corresponding component of the menu think of it as the style for the links that appear within the box. In addition to the traditional style properties it also includes ItemSpacing, HorizontalPadding and VerticalPadding.
- DynamicSelectedStyle The SelectedStyle sets the properties that control the display of the individual MenuItem that is currently selected and contained on the corresponding component of the menu think of it as a MenuItemStyle specific to the selected item. In addition to the traditional style properties it also includes ItemSpacing, HorizontalPadding and VerticalPadding.
- DynamicHoverStyle The HoverStyle sets the properties that control the display of the individual MenuItem that is currently selected and contained on the corresponding component of the menu think of it as a MenuItemStyle specific to the selected item. In addition to the traditional style properties it also includes ItemSpacing, HorizontalPadding and VerticalPadding.
All of these styles can be set in the designer:

It is best to simply play around with these styles to see exactly what you can do.
Video - Using the Menu Control