<!-- 
            Copyright: Copyright 1998-2001 W3C (MIT, INRIA, Keio), All Rights Reserved.
See http://www.w3.org/Consortium/Legal/.
Author: Erik Hodge, RealNetworks
         File Name: syncBehavior_independent_on_par.smil
  Media Components: 2 JPGs and 1 WAV
 Expected Behavior: show smile image from 0 seconds to 5 seconds
                    then show frown image from 5 seconds to 10 seconds
                    play audio from 0 seconds to 10 seconds
                    seek the presentation and the audio should ignore the seek
                    stop the presentation and the audio should stop
-->
<smil xmlns="http://www.w3.org/2001/SMIL20/Language">
   <head>
     <layout>
        <region id="rgn1" left="0" top="0" width="320" height="240"/>
     </layout>
   </head>
   <body>
      <par id="parentPar">
         <par id="indendentPar" syncBehavior="independent">
            <audio src="../sounds/wakeup.wav" begin="0s" dur="10s"/>
         </par>
         <img src="../images/smile.jpg" begin="0s" dur="5s" region="rgn1"/>
         <img src="../images/frown.jpg" begin="5s" dur="5s" region="rgn1"/>
      </par>
   </body>
</smil>