// JavaScript Document

// FUNZIONI RELATIVE ALLA GALLERIA VIDEO

var ytplayer=null;


function onYouTubePlayerReady(ytPlayer) {
	ytplayer = document.getElementById("ytPlayer");
}

function play() {
	if (ytplayer) {
		ytplayer.playVideo();
	}
}

function carica(quale) {
	
	$('#video_fake').css('display','none');
	
	if (ytplayer) {
		ytplayer.loadVideoById(quale);
	}
	else
	{
	// Lets Flash from another domain call JavaScript
	var params = { allowScriptAccess: "always" };
	
	// The element id of the Flash embed
	var atts = { id: "ytPlayer" };
	
	// All of the magic handled by SWFObject (http://code.google.com/p/swfobject/)
	swfobject.embedSWF("http://www.youtube.com/v/" + quale + "&enablejsapi=1&playerapiid=player1&autoplay=1", 
	"interno_contenitore_video_player", "400", "300", "8", null, null, params, atts);
	}
} 
