// Bind definition links
$(document).ready(function() {
	$('a.def').bind('click', function() {
		var glossaryDialog = window.open($(this).attr('href'),'glossaryDialog','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=300,height=200,screenX=100,screenY=100,top=100,left=100');
		return false;
	});
});
