$(document).ready(function(){
		
	$("#docInfoButton").click(function(event){
   		$('#docInfoHidden').animate({height: "toggle"}, 100);
   		$('#docInfoButton').toggleClass("active");
   });
   
   $("#otherInfoButton").click(function(event){
   		$('#otherInfoHidden').animate({height: "toggle"}, 100);
   		$('#otherInfoButton').toggleClass("active");
   });
   
   $('#comments').click(function() {
    	$('#commentsHidden').animate({width: "toggle"}, 300);
        $('#cover').animate({opacity: "toggle"}, 100);
   });
	
   $('#cover').click(function() {
		$('#commentsHidden').animate({width: "toggle"}, 300);
		$('#cover').animate({opacity: "toggle"}, 100);
   });
	
});
