<!--
            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-reset-10-2.smil   
  Media Components: 2 JPG
 Expected Behavior: 2s pause, then first image shown 5s, 
                    second image shown 5s when first is clicked.
		    another 2s pause and then first image shown 5s,
                    and second image shown 5s when first is clicked
-->
<smil xmlns="http://www.w3.org/2001/SMIL20/Language">
  <body>    	
    <par repeatCount="2">
    	<par begin="2s">
      		<img id="img1" src="../images/frown.jpg" begin="0s" dur="5s"
                     restart="never"/>
      		<img src="../images/smile.jpg" begin="img1.activateEvent" dur="5s"
                     restart="never"/>
    	</par>  
    </par>  
  </body>
</smil>