function youtube(id,W,H) {
	var params = {
		allowScriptAcess: "always",
		allowFullScreen: "true",
		wmode: "transparent"
	};
	var attributes = {
		id: "youtube",
		name: "YOUTUBE"
	};
	swfobject.embedSWF("http://www.youtube.com/v/"+id+"&fmt=22&showinfo=0&fs=1", "youtube", W, H, "9.0.0", false, false, params, attributes);
}

function apri(m,n) {
	var node = document.getElementById(m);
	if (node)
		node.style.display = "block";
	document.getElementById(n).style.color = "#ffd739";
}

function chiudi(m,n) {
	var node = document.getElementById(m);
	if (node)
		node.style.display = "none";
	document.getElementById(n).style.color = "#fff";
}


jQuery(function(){
	jQuery('.video-call').each(function(){
		jQuery(this).attr('href','javascript:void(0)');
		jQuery(this).click(function(){
			var vid = jQuery(this).attr('id');
			var vname = jQuery(this).attr('title');
			youtube(vid,425,344);
			jQuery('#video-name').html(vname);
		});
	});
});