I have been working on this for a bit now and just can't seem to get it to work. Where my problem is is that the css class is not being removed.
jQuery$(document).ready(function(){
$('#about').click(function(){
$('#about').addClass('bookOpen').before('<a href="#" class="closeButton">Close</a>');
});
$('.closeButton').click(function(){
$(this).next().removeClass('bookOpen');
});
});