<?xml version="1.0"?>
<vxml version="1.0">

  <form>
    <block>
      <prompt bargein="false">
        Welcome to TIC hair products division,
        home of Wonder Shampoo.
      </prompt>
      <goto next="#color_choice"/>
    </block>
  </form>

  <menu id="color_choice">
    <property name="inputmodes" value="dtmf"/>
    <prompt>
     If Wonder Shampoo turned your hair green, please press 1.
     If Wonder Shampoo turned your hair purple, please press 2.
     If Wonder Shampoo made you bald, please press 3.
     </prompt>
    <choice dtmf="1" next="#green.vxml"/>
    <choice dtmf="2" next="#purple.vxml"/>
    <choice dtmf="3" next="#bald.vxml"/>
  </menu>

  <form id="green">
    <block>
       <prompt>
         If Wonder Shampoo turned your hair green and you wish
         to return it to its natural color, simply shampoo
         seven times with three parts soap, seven parts water,
         four parts kerosene, and two parts iguana bile.
       </prompt>
      <goto next="#bye"/>
    </block>
  </form>

  <form id="purple">
    <block>
       <prompt>
         If Wonder Shampoo turned your hair purple and you wish
         to return it to its natural color, please walk
         widdershins around your local cemetery
         three times while chanting "Surrender Dorothy."
       </prompt>
      <goto next="#bye"/>
    </block>
  </form>

  <form id="bald">
    <block>
       <prompt>
         If you went bald as a result of using Wonder Shampoo,
         please purchase and apply a three-month supply
         of our Magic Hair Growth Formula. Please do not
         consult an attorney as doing so would violate the
         license agreement printed on the inside fold of 
         the Wonder Shampoo box in 3-point type, which you 
         agreed to by opening the box.
       </prompt>
       <goto next="#bye"/>
    </block>
  </form>

  <form id="bye">
    <block>
      <prompt>
       Thank you for visiting TIC Corp. Goodbye.
      </prompt>		
      <disconnect/>
    </block>
  </form>

</vxml>
