$(document).ready(function() {
     $(".accordionlink").click(
      function() {
          //$(this).parent().parent().nextAll().toggle('100');
		  //$(this).nextAll().toggle('100');
		  //alert($(this).text() == 'Read more...');
		  if($(this).text() == 'Read more >>>') { $(this).text('Less <<<'); } else { $(this).text('Read more >>>'); }
		  $("#content-body-footer-left-bottom-more").toggle('100');
      }
    );
	
	//$(".accordionlink").parent().parent().nextAll().toggle('1');
    //$(".accordionlink").parent().nextAll().toggle('1');
	//$(".accordionlink").nextAll().toggle('1');
	if (location.pathname.toLowerCase().indexOf('getdoc') <= 0) $("#content-body-footer-left-bottom-more").toggle('1');
    
});
