$(document).ready(function() {
 // hides the div box as soon as the DOM is ready
 // (a little sooner than page load)
  $('#safe_html').hide();
 // toggles the div box on clicking the noted link
  $('a#slide-slidetoggle').click(function() {
	$('#safe_html').slideToggle('normal');
	return false;
  });
});