$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('.answer').hide();
  // toggles the slickbox on clicking the noted link
  $('h3.faq').click(function() {
	$(this).siblings('.answer').toggle(300);
	return false;
  });
  $('a.hide').click(function() {
	$('.answer').hide(300);
	return false;
  });
});