function toogleDiv(nome){
	$('#'+nome).slideToggle('slow', function() {
		// Animation complete.
	});
}
