function abreCinto() {
	$(".cinto_aberto").hide();
	$(".cinto_fechado").slideDown(500);
}
function fechaCinto(){
	$(".cinto_fechado").slideUp(500);
	$(".cinto_aberto").show();
}
function openEditor() {
	$(".editor_controle").hide();
	$(".editor").show();
}
