1.  $menu_items = _menu_get_active_trail();
  2.  
  3.   // $menu_items[1] is the top parent of our menu container, e.g. primary links
  4.   // this gets the required menu item into an array
  5.   $link_array = menu_item_link($menu_items[1], FALSE);
  6.  
  7.   // whip out spaces and make the name lower case
  8.   $section_name = strtolower($link_array['title']);