	/*********************************************************
	 *********************************************************
	 **														**
	 **			GERENCIA ANOTAÇÕES							**
	 **														**
	 *********************************************************
	 *********************************************************/
	/**
	 * Abre e fecha campo de anotação
	 * @acess public
	 */
	jQuery(document).ready(function(){
		jQuery("#anoteImovel").toggle(
		  function () {
			jQuery("#campoAnotacao").show("slow");
		  },
		  function () {
			jQuery("#campoAnotacao").hide("slow");
		  }
		);
	});