// JavaScript Document

//Shows and Hides the html table for the BUSINESS RECORD RETENTION SCHEDULE

  $(document).ready(
    function() {
      $('table').hide().end().find('a.toggleTable').click(
	    function() {
        if ($('table').hasClass('hideTable')) {
            $('table').removeClass('hideTable').show();
			$('a.toggleTable').text('Hide HTML Version');
      	} else {
          	$('table').addClass('hideTable').hide();
			$('a.toggleTable').text('Show HTML Version');
        }
      });
	});	  
