function SetVideo()
{ 
	var video =document.getElementById("TDVideo");
	var Links =document.getElementById("links");
	var audio =document.getElementById("TDAudio");
	var objeto ='<DIV align=center><object id="wmp" codeBase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112" height="290" standby="Loading Microsoft Windows Media Player components..." width="320" align="middle" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" viewastext>  <PARAM NAME="FileName" VALUE="http://www.dnip.com.br/link/geraisfm1.wmx"><PARAM NAME="ShowControls" VALUE="1"><PARAM NAME="showdisplay" VALUE="0"><PARAM NAME="ShowStatusBar" VALUE="1"><PARAM NAME="AutoSize" VALUE="0"><PARAM NAME="AutoStart" VALUE="1"><PARAM NAME="AnimationAtStart" VALUE="1"><PARAM NAME="CurrentPosition" VALUE="">  <embed src="http://www.dnip.com.br/link/geraisfm1.wmx" width=320 height=290 autostart=1 align="middle" type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/" showcontrols=1 showdisplay=0 showstatusbar=1 autosize=0 displaybackcolor=black AnimationAtStart=1 volume=0 filename="http://www.dnip.com.br/link/geraisfm1.wmx" currentposition="" > </embed> </object>  </DIV><div class="LinkMudar"><a  href="javascript:;" onClick="SetAudio()" title="Ouvir r&aacute;dio ao vivo">&Aacute;udio</a></div>';
	
	audio.style.display = 'none';
	audio.innerHTML = "";
	video.innerHTML = objeto;
	new Effect.Fade(Links, {duration: 0.5});
	new Effect.Appear(video, { duration: 0.5 });
}
function SetAudio()
{ 
	var audio =document.getElementById("TDAudio");
	var Links =document.getElementById("links");
	var video =document.getElementById("TDVideo");
	var objeto ='<DIV align=center><object height="50" width="320"> <param value="http://www.dnip.com.br/link/geraisfm.wmx" name="url"/> <param value="1" name="autostart"/><param value="1" name="showcontrols"/><param value="1" name="stretchtofit"/><param value="1" name="enablecontextmenu"/>    <param value="1" name="ShowStatusBar"/> <embed height="50" width="320" enablecontextmenu="1" stretchtofit="1" url="http://www.dnip.com.br/link/geraisfm.wmx" showstatusbar="1" showtracker="0" displaysize="0" autosize="0" showcontrols="1" animationatstart="1" transparentatstart="0" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" type="application/x-mplayer2" autostart="1" src="http://www.dnip.com.br/link/geraisfm.wmx"/></object> </OBJECT> </DIV> <div class="LinkMudar"><a href="javascript:;" onClick="SetVideo()" title="Ver v&iacute;deo ao vivo">V&iacute;deo</a></div>'
	video.style.display = 'none';
	video.innerHTML = "";
	audio.innerHTML = objeto;
	new Effect.Fade(Links, {duration: 0.5});
	new Effect.Appear(audio, { duration: 0.5 });
}