function $() {
  return document.getElementById(arguments[0]);
}
/////////////////////////////////////////////////
// FUNCAO PARA EXIBIR SERVICOS NAO CONTRATADOS //
/////////////////////////////////////////////////
function display_info(servico){
		if ($('recolher_'+ servico).style.display== ''){
				$('detalhes_'+ servico).style.display='none';
				$('expandir_'+ servico).style.display='';
				$('recolher_'+ servico).style.display='none';
		}
		else{
				$('detalhes_'+ servico).style.display='';
				$('expandir_'+ servico).style.display='none';
				$('recolher_'+ servico).style.display='';
		}
}
