<!--
            Copyright: Copyright 1998-2001 W3C (MIT, INRIA, Keio), All Rights Reserved.
See http://www.w3.org/Consortium/Legal/.
Author: Aaron Cohen, Intel
           Version: Mar 31, 2000, v1  
            Module: SMIL Timing & Sync Module
           Feature: restart attribute
         File Name: restart-propagate-10-3.smil   
  Media Components: 2 MPG, 2 JPG
 Expected Behavior: display frown indefinitely
                    1s after frown is clicked, display smile for 5s
                    when smile is displayed, start vid1 and vid2
                    smile disappears after 5s,
                    clicking again on frown will restart vid1,
                    but not vid2.			
-->
<smil xmlns="http://www.w3.org/2001/SMIL20/Language">
  <body>    	
    <par>
	<img id="img1" src="../images/frown.jpg" dur="indefinite" />
	<img id="img2" src="../images/smile.jpg" begin="img1.activateEvent+1s" dur="5s"
             restart="whenNotActive"/>
	<video id="vid1" src="../videos/nist.mpg" begin="img2.begin"
             restart="always"/>
	<video id="vid2" src="../videos/pe_video1.mpg" begin="img2.begin"
             restart="never"/>
    </par>  
  </body>
</smil>