	
	
$(document).ready(function(){
	$('#logotrans').flash({
		swf: 'http://www.transpiracao.com.br/flash/logotrans.swf',
		width: 90,
		height: 30,
		wmode: 'transparent'
	});
	$('#logo').flash({
		swf: 'flash/logo.swf',
		width: 225,
		height: 158,
		wmode: 'transparent'
	});
	$('#f-topo').flash({
		swf: 'flash/topo.swf',
		width: 546,
		height: 167,
		wmode: 'transparent'
	});
	$("#menu ul").hide();
	$("#menu a[href='#']").click(function( e ){
		e.preventDefault();
		var ul = $( this ).next('ul');
		$( ul ).toggle('slow');
	});
	
	$("a.externo").click(function( e ){
		e.preventDefault();
		window.open( $(this).attr('href'), '', $(this).attr('rel') );
	});
});