Drupal.behaviors.togg = function (context) {
	$(".field-field-colecoes-release-texto").hide(); 
	
	$('a#togg-link:not(.togg-processed)', context).addClass('togg-processed').each(function () {
		$(this).click(function() {
			$("div.field-field-colecoes-release-texto").toggle("slow");
			return false;
		});
	});
};

