Example of a simple voice menu


<menu>
  <prompt>
   <speak>
     Welcome to Ajax Travel.
     Do you want to fly to 
     <emphasis>
       New York
     </emphasis>
     or 
     <emphasis> 
       Washington 
     </emphasis>
   </speak>
  </prompt>

 <choice next="http://www.NY...".>
    <grammar>
     <choice>
       <item> New York </item>  
       <item> Big Apple </item>
     </choice>  
    </grammar>
 </choice>

 <choice next="http://www.Wash...">
   <grammar>
      <choice>
       <item> Washington </item> 
        <item> The Capital </item>
      </choice> 
   </grammar>    
 </choice>
</menu>