window.jsonExports = {};

$(function() {
	$('input[title], textarea[title], tr[title]')
		.tooltip({
			bodyHandler: function() {
				return this.tooltipText;
			}
		});

	$('.secret')
		.hide()
		.after(
			$('<a href="#show" />')
				.text('display secret')
				.click(function() {
					$(this)
						.hide()
						.prev('.secret')
						.show();
					return false;
				})
		);
});