<!--
            Copyright: Copyright 1998-2005  W3C (MIT, ERCIM, Keio), All Rights Reserved.
See http://www.w3.org/Consortium/Legal/.
Author: Muriel Jourdan (Muriel.Jourdan@ERCIMlpes.fr)
           Version: Oct 25th, 2000, v1
            Module: SMIL Timing & Sync Module
           Feature: hyperlink on an inactive object
         File Name: hyperlink_inactive3.smil
  Media Components: 1MPG (5.4s), 1WAV (10s), 2JPG
 Expected Behavior: (a) Without any user click : 
                        at t=0s the video starts, 
                        at t=3s the audio starts, 
                        at t=6s the two pictures are shown frwon for 5s, 
                          smile for 3s (and not for 6s).  
                    (b) the user click on the hyperlink video, 
                        then the two pictures are shown frown for 5s, 
                          smile for 3s
-->
<smil xmlns="http://www.w3.org/2005/SMIL21/Language">
   <body>
     <seq>
       <par>
         <a href="#frown"><video src="../videos/nist.rm" id="vid"/></a>
         <audio src="../sounds/geminidecho.wav" begin="3s" id="sound" dur="3s"/>
       </par>
       <par>
         <img src="../images/frown.jpg" dur="5s" id="frown"/>
         <img src="../images/smile.jpg" begin="sound.begin" dur="6s" id="smile"/>
       </par>
     </seq>
   </body>
</smil>