$(document).ready(function(){
	if($('span.glossary').length > 0 && $('div.glossary').length > 0) {
		$('span.glossary').click(function(){
			var word = $(this).text();
			var word_id = word.toLowerCase().replace(/ /g,'_').replace(/\W/g,'');
			$('#'+word_id).dialog('option', 'title', word);
			$('#'+word_id).dialog('open');
		});
	
		$('div.glossary').dialog({
			title: 'What is ...',
			autoOpen: false,
			closeOnEscape: true,
			modal: true,
			width: 600,
			height: 400
			
		});
	
		$('span.glossary').css('color', '#630404');
		$('span.glossary').css('text-decoration', 'underline');
		$('span.glossary').css('cursor', 'pointer');
		$('div.glossary .glossary-title').css('display', 'none');
	}
});