<!--
            Copyright: Copyright 1998-2005  W3C (MIT, ERCIM, Keio), All Rights Reserved.
See http://www.w3.org/Consortium/Legal/.
Author: Aaron Cohen, Intel
           Version: April 19, 2000, v2
            Module: SMIL Timing & Sync Module
           Feature: restart attribute
         File Name: restart-eval-10-4.smil   
  Media Components: 2 JPG, 1 WAV
 Expected Behavior: display frown for 30s
                    when frown is clicked, display smile for 5s
                    1s later start audio
                    restart smile whenever frown clicked,
 		    and restart audio 1s later.
-->
<smil xmlns="http://www.w3.org/2005/SMIL21/Language">
   <body>    	
     <par>
 	<img id="img1" src="../images/frown.jpg" dur="30s"/>
 	<img id="img2" src="../images/smile.jpg" begin="img1.activateEvent" dur="5s"
             restart="always"/>
	<audio src="../sounds/leonidsample.wav" begin="img2.begin+1s"
             restart="always"/>
     </par>  
  </body>
</smil>