I wanted to write if/for each statement that will get me all the child node where the rootNode = "home"
this is what i have so far
if (topLevelNode.Title == "Home")
{
var topLevelNodes = SiteMap......
}
foreach (SiteMapNode node in topLevelNodes)
{
...........................
}