A partial view macro for building a bootstrap navbar on the top of your page. The navbar requires bootstrap (and jquery) js and css.
The script is based on the menu building script Jeavon Leopold wrote at http://our.umbraco.org/forum/developers/razor/56136-3-level-navigation?p=0
To use in your projeft, just add the partial view to your master page, ie:
<body>
<header>
@{ Html.RenderPartial("NavbarTop"); }
</header>