jQuery(document).ready(function($) {
$('#download-content').click(function() {
  $('#download-container').toggle('slow', function() {
  });
});
$('#more-information').click(function() {
  $('#more-information-container').toggle('slow', function() {
  });
});

$('#more-about-author').click(function() {
  $('#more-author').toggle('slow', function() {
  });
});

$('#contact-author').click(function() {
  $('#contact-author-form').toggle('slow', function() {
  });
});

$('#more-authors').click(function() {
  $('#more-authors-list').toggle('slow', function() {
  });
});

var moretext = "More";
var lesstext = "Less";

$('#more-title').click(function() {
  $('#more-content').toggle('slow', function() {
if($('#more-title').hasClass("less")) {
            $('#more-title').removeClass("less");
            $('#more-title').html(moretext);
        } else {
            $('#more-title').addClass("less");
            $('#more-title').html(lesstext);
        }
    
  });
});
});
