// Funcao iFrame Controle
function browserFrameResize(value) {
	$("iFrame").height = value;
}
function exec_browserFrameResize(){	
	parent.browserFrameResize(document.body.scrollHeight);
}
function init_browserFrameResize(){
	parent.browserFrameResize(0);
}
function exec_pageResize(){
	window.resizeTo(document.width + 20,document.body.scrollHeight + 20)
}
function MostraEsconde(sId)
{
	if($(sId))
	{
		if ($(sId).style.display=="none")
			$(sId).style.display="";
		else 
			$(sId).style.display="none";
	}
}
function MudaFoto(foto){	
	$("foto_principal").src="fotos/"+foto;
}
function MudaVideo(video){	
	$("video_principal").innerHTML = "<object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/"+ video +"'></param><embed src='http://www.youtube.com/v/"+ video +"' type='application/x-shockwave-flash' width='425' height='350'></embed></object>"
}