$(document).ready(function(){
	$('#logotrans').flash({
		swf: 'http://www.transpiracao.com.br/flash/logotrans2.swf',
		width: 138,
		height: 22,
		wmode: 'transparent'
	});
	$('#img_topo').flash({
		swf: 'flash/topo.swf',
		width: 588,
		height: 155,
		wmode: 'transparent'
	});

	$('.externo').click(function(){
		window.open($(this).attr('href'));
		return false;
	});

	$('#lista-especialidades li div').css( { display : 'none' } );
	
	$('#lista-especialidades li a:not(#lista-especialidades li div a)').click(function( e ){
		e.preventDefault();
		$('#lista-especialidades li a:not(#lista-especialidades li div a, '+this+')').next().css( { display : 'none' } );
		$(this).next().toggle();
	});
	$('#lista-especialidades li div a.toggle').click(function(){
		var titulo = $(this).html();
		$("a[name='"+titulo+"']").next().toggle();
	});

	if ( document.all&&document.getElementById )
	{
		navRoot = document.getElementById("menu");
		for (i=0; i<navRoot.childNodes.length; i++) 
		{
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") 
			{
				node.onmouseover=function()
				{
					this.className+=" over";
				}
				node.onmouseout=function()
				{
					this.className=this.className.replace
					(" over", "");
				}
			}
		}
	}
});