    var oeTags = ' <script type="text/javascript"> '
	+ 'swfobject.registerObject("player", "9") '
	+ '</script> '
	+ '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="320" height="322" '
    + 'id="player"> '
	+ '<param name="allowScriptAccess" value="always" /> '
	+ '<param name="allowFullScreen" value="true" /> '
	+ '<param name="movie" value="media/video_player.swf" /> '
	+ '<param name="quality" value="high" /> '
	+ '<param name="bgcolor" value="#000000" /> '
	+ '<param name="wmode" value="transparent" /> '
	+ '<param name="alt" value="Making Learning Real - overview video" /> '
	+ '<!--[if !IE]>--> '
	+ '<object type="application/x-shockwave-flash" data="media/video_player.swf" width="320" height="322"> '
	+ '<param name="allowScriptAccess" value="always" /> '
	+ '<param name="allowFullScreen" value="true" /> '
	+ '<param name="wmode" value="transparent" /> '
	
	+ '<!--<![endif]--> '
	+ '	<br /> '
	+ '	<br /> '
	+ '	Overview video '
	+ '	<br /> '
	+ '	<br /> '
	+ '	Making Learning Real '
	+ '	<br /> '
	+ '	<br /> '
	+ '	<br /> '

	+ '	<p> '
	+ '		<span class="class4">Your browser appears to be missing the latest version (version 9) of the Adobe Flash Player. <br />Please visit <span class="class3"><a href="http://get.adobe.com/flashplayer/">here</a> </span>to download it for free.</span>'
	+ '	</p> '
	+ '<!--[if !IE]>--> '
	+ '</object> '
	+ '<!--<![endif]--> '
	+ '</object> ';

function launchFlash() {
	var targetarea = document.getElementById('video-thumb');
	targetarea.innerHTML = oeTags;
}

function writeFlash() {
//	if(PBS_FlashCanPlay(8)) {
		return (oeTags);   // embed the flash movie
		
/*	  } else {  // flash is too old or we can't detect the plugin
		// NOTE: height, width are required!
		var alternateContent = '<img src="../images/' + videoName + '.jpg" alt="" width="320" height="240" />';
	
		return(alternateContent);  // insert non-flash content
	  } */
}

$(document).ready(function() {    
	for(var i=1; i<4; i++) {
    	$('#menu' + i).hide();
   	}
   			 
   	 $('#nav1').mouseover(function(event) {    			
    	$('#menu1').show();
//    	$('#nav1-img').attr('src', 'images/started_on.gif');
	 }).mouseout(function(event) {
	 	$('#menu1').hide();
//    	$('#nav1-img').attr('src', 'images/started_off.gif');
	 });
			
	$('#nav2').mouseover(function(event) {    			
    	$('#menu2').show();
//    	$('#nav2-img').attr('src', 'images/action_on.gif');
	}).mouseout(function(event) {
	 	$('#menu2').hide();
//    	$('#nav2-img').attr('src', 'images/action_off.gif');
	});
			
	$('#nav3').mouseover(function(event) {    			
    	$('#menu3').show();
//    	$('#nav3-img').attr('src', 'images/practice_on.gif');
	}).mouseout(function(event) {
	 	$('#menu3').hide();
//    	$('#nav3-img').attr('src', 'images/practice_off.gif');
	});
});