document.observe('dom:loaded', function() {
	$$('.toggle_box ul.options a').each(function(element) {
		element.onclick = function() {
			$(this.up('ul').down('a').getAttribute('rel')).hide();
			$(this.up('ul').down('a', 1).getAttribute('rel')).hide();

			this.up('ul').down('a').removeClassName('current');
			this.up('ul').down('a', 1).removeClassName('current');

			$(this.getAttribute('rel')).show();
			this.addClassName('current');
			return false;
		}
	});
});