if (Drupal.jsEnabled) {
  $(document).ready( function () {
    $('a.toc-toggle').click(function() {
      $('.toc-list').slideToggle();
	  var text = $('a.toc-toggle').text();
	  if (text == 'skjul') {
		  $('a.toc-toggle').text('vis');
      } else {
		  $('a.toc-toggle').text('skjul');
      }
	  return false;
	});
  });
}
