efeitos = new function() {
	this.mostrar = 
		function(elemento) {
			$(elemento).show(700);
		};
		
	this.fechar =
		function(elemento) {
			$(elemento).hide(700);
		};
}
