xxxxxxxxxx
<button id="toggleButton">Toggle Element</button>
<div id="myElement">This is the element to be shown/hidden</div>
xxxxxxxxxx
$( "#clickme" ).click(function() {
$( "#book" ).toggle( "slow", function() {
// Animation complete.
});
});