function mostrar(id)
				{
					//document.getElementById(id).style.display='block';
					$(id).style.display = 'block';
				}
				var sommostra = false;
function mostrarDadosSom()
{
	if(sommostra==false)
	{
		mostrar('SOM_VIDEO_ITENS');
		sommostra=true;
	}
	else
	{
		esconder('SOM_VIDEO_ITENS');
		sommostra=false;
	}
}
function somaAudioVideo(obj)
{
	/*var valorsomado = document.getElementById('somatotalsom').value;
	valorsomado+=obj.value;

	document.getElementById('somatotalsom').value = valorsomado;
	document.getElementById('valor_totalSom').innerHTML = 'R$' + valorsomado;*/

	alert($F('somatotalsom'));

}
