I have a Master Page called MasterPageUser that has a Menu control on it. Depending on which item in the menu item is selected, a child page is called (which also uses the MasterPageUser)

What I want to do is hide the menu item that was used to call the specific page, i.e.

If my menu choices on the master page are:
"Home"
"Support"
"About"

and I select "About" I want my menu choices to now be:

"Home"
"Support" with "About" appearing as not visible.

Any idea on how to accomplish this? I'm thinking I need code on the child page, perhaps pageload that sets the property of the content menu, but I don't know how to reference it.

Thoughts?