You can do it in the php by adding an if statement where appropriate. WIthout a bit more information about your site then hard to be more detailed than that.

Or:

You can just stop the menu displaying on the home page with css. The stylesheet rule would look something like:

Code:
#indexDefaultHeading #dropdownmenu{
display:none;
}
#dropdownmenu is the ID of the container for the dropdown menu. WIthout looking at the site I can't tell you what that would be. But you will need to find it and replace #dropdownmenu with it in the rule.


}