window.addEvent("domready",function () 
{
	$$("span.glossary").each(function (span) 
	{
		span.addEvent("click",function (e) 
		{
			e.stop();

			var glossaryID = this.id.replace(/[^0-9]/g,"");
			
			TB_show(this.get("text"), "glossary.php?glossaryID=" + glossaryID + "&TB_iframe=1&width=500&height=300&keepThis=true");
		});
		
		span.addClass("glossary_clickable");
		span.title = "click for more info";
	});	
});
