<!-- saved from url=(0022)http://internet.e-mail -->
<html xmlns:t ="urn:schemas-microsoft-com:time" >
<head>
<style>
 .time    { behavior: url(#default#time2);}
  #test		{position:absolute; top:50}
  #TimerParent {color:black; font-size:16; font-weight:bold}
  #instructions {position:absolute; top:40; left:350}
  t\:img   {height:100; width:100}
  t\:video {height:100; width:100}
</style>
<script>
function timerTick(){
  Timer.innerText=parseInt(document.body.currTimeState.activeTime);
}
</script>
<?IMPORT namespace="t" implementation="#default#time2">
</head>
<body>
<t:par id="test">
	<t:img id="smile" begin="10s" dur="10s" src="../images/smile.jpg"/>
	<t:par id="par1" begin="0s;10s" dur="9s">
		<t:video id="video1" begin="smile.begin" dur="10s" src="../videos/nasa.qt"/>
	</t:par>
	<t:video id="video2" begin="video1.begin-5s" dur="10s" src="../videos/nasa.qt"/>
</t:par>
<span id="TimerParent">Timer:
  <span id="Timer" class="time" dur="1" repeatCount="indefinite" onrepeat="timerTick()">0</span>
</span>
<br><br>
<DIV id="instructions"><pre>
File Name: interval_logic_multiple_begins_negative_offset.htm
Expected Behavior:
at t=9  video2 starts 4 seconds into the video.
at t=10 smile appears.
at t=10 video1 starts.
at t=15 video2 disappears.
at t=19 video1 disappears.
at t=20 smile disappears.
</pre>
</DIV>
</body>
</html>