
document.write('<style type="text/css">.glossary dl dd {display:none;}</style>');

function initGlossary() {
	$$('dt').each(function(dt) {
		dt.onmouseover = function() {
			dt.style.cursor='pointer';
			dt.style.textDecoration='underline';
		};
		dt.onmouseout = function() {
			dt.style.textDecoration='none';
		};
		dt.onclick = function() {
			dt.style.cursor='pointer';
			dt.toggleClassName('open');
			dt.next('dd').toggleClassName('open');
		};
	});	
}
document.observe('dom:loaded', function(){  
    initGlossary();
}); 