// JavaScript Document

var pic = "http://www.actioncoachteamsage.net/images/100_5707.JPG";
var mov = "http://www.youtube.com/v/hy8kq8lhDKU?version=3&enablejsapi=1&playerapiid=ytplayer&autoplay=1&fs=1&hd=1";
var timer = null;
function stateChange(e)
{
	if (e == 0)
	{
		setTimeout('replacePic()',2000);
		//replacePic();		
	}
	else if (e == 2)
	{
		timer = setTimeout('replacePic()',5000);
	}
	else if ((e == 1) && (timer != null))
	{
		clearTimeout(timer);
		timer = null;
	}
		
}

function showMovie()
{
	var params = { allowScriptAccess: "always", allowFullScreen: "true" };
    var atts = { id: "myytplayer" };
	swfobject.embedSWF(mov, "ytapiplayer", "636", "458", "8",null,null,params,atts);
}

function onYouTubePlayerReady(playerId) 
{
	ytplayer = document.getElementById("myytplayer");
	ytplayer.addEventListener("onStateChange", "stateChange");
}

function replacePic()
{
	if (timer != null)
	{
		clearTimeout(timer);
		timer = null;
	}
	swfobject.removeSWF("ytapiplayer");
	var div = document.getElementById("ytapiplayer");
	if (div != null) 
		div.innerHTML = "<a href='javascript:showMovie();'><img border=0 width=632 height=455 src='"+pic+"' /></a>";
}

document.writeln("<div id='ytapiplayer'><a href='javascript:showMovie();'><img border=0 width=632 height=455 src='"+pic+"' /></a></div>");

/*


<object width="500" height="249"><param name="movie" value="http://www.youtube-nocookie.com/v/hy8kq8lhDKU?fs=1&hl=en_US&rel=0&hd=1&title=Introducing+ActionCOACH+Team+Sage"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube-nocookie.com/v/hy8kq8lhDKU?fs=1&hl=en_US&rel=0&hd=1&title=Introducing+ActionCOACH+Team+Sage&type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="249"></embed></object>
*/
