$(document).ready(function() {
	$('table.hide-show tr td div').hide();
	$('table.hide-show tr td h3').click(function() {
		$(this).next().slideToggle('normal');
	});
});