
Event.observe(window, 'load', function() {
	toggler_init();
});

function toggler_init() {
	
	$$('.toggler').each(function (t) {
		var o = $(t.id + '_link');
		if ( o ) {
			o.href = 'javascript:toggler_show(\''+ t.id +'\')';
			$(t.id + '_btn').style.display = 'block';
			t.style.display = 'none';
		}
	});
}

function toggler_show(id) {
	$( id + '_btn' ).style.display = 'none';
	$( id ).style.display = 'block';
}
