<!-- 
   Copyright: Copyright 1998-2001 W3C (MIT, INRIA, Keio), All Rights Reserved.
See http://www.w3.org/Consortium/Legal/.
Author: Alain Uginet, Oratrix
   File Name: linking-anc-actuate3.smil
   Module: LinkingAttributes Module
   Feature: <area actuate>
   Media Components: 2 JPG
   Description: test the default value of actuate attribute on an anchor
   Expected Behavior: when you play the document, you should see the frown image playing during 2 second,
				then the smile image
-->
<smil xmlns="http://www.w3.org/2001/SMIL20/Language">
  <head>
    <layout>
	<topLayout width="400" height="400">
        <region id="region1" width="400" height="400" />
	</topLayout>
    </layout>
  </head>
  <body>
    <seq>
	<img id="img1" region="region1" src="../images/frown.jpg" dur="2s" >
		<area href="#img2" actuate="onRequest" /> 
	</img> 
	<img id="img2" region="region1" src="../images/smile.jpg" dur="20s" />
    </seq>
  </body>
</smil>