
	Event.observe(window, 'load', loadAccordions, false);

	function loadAccordions() {
		$$('#tblJuridicos a[href]').each(function(item, index){item.setAttribute("target", "_blank")});

		var bottomAccordion = new accordion('vertical_container', {
			// The classnames to look for
			classNames : {
				// The standard class for the title bar
				toggle : 'accordion_toggle',
				// The class used for the active state of the title bar
				toggleActive : 'accordion_toggle_active',
				// The class used to find the content
				content : 'accordion_content'
			}
		});

		// Open first one
		bottomAccordion.activate($$('#vertical_container .accordion_toggle')[0]);
	}