
$(document).ready(function() {
  $('#hide ul').hide();
  $('#hide h3').click(function() {
	$(this).next().toggle('slow');
	return false;
  });
});
