	var ytplayer;
	function onYouTubePlayerReady(playerId) {
		ytplayer = document.getElementById("ytPlayer");
	}

	function loadVideo(videoID,div,width,height)
	{
		if( $("#"+div).length > 0 )
		{
			var params = { allowScriptAccess: "always", allowfullscreen:"true" };
			var atts = { id: "ytPlayer" };
			swfobject.embedSWF("http://www.youtube.com/v/" + videoID + "&enablejsapi=1&playerapiid=player1&fs=1",
							   div, width, height, "8", null, null, params, atts);
		}
		else
		{
			ytplayer.cueVideoById(videoID);
		}
	}
	
