//Get the document ready
  $(document).ready(function(){

//Toggle for class review 	
  	//On load hide the blockquote
  	 $(".review blockquote").hide();
  	 
 	//On load prepend a span-wrapped amchor inside the cite
  	 $(".review cite")
      .prepend("<span title='Show quote'><a href='' title='Show quote'>+</a></span>"); 
    
     //On click toggle the next blockquote and the span-wrapped anchor  
     $(".review cite").click(function(event){
    	$(this).next().slideDown().toggle();
     	$(this).children("span a").toggle();
     	
// Stop the link click from doing its normal thing
       return false;
     });

//Toggle for class article	
  	//On load hide the div.blockquote
  	 $(".article div").hide();
    
     //On click toggle the next blockquote and the span-wrapped anchor  
     $(".article h3").click(function(event){
    	$(this).next().slideDown().toggle();
     	
// Stop the link click from doing its normal thing
       return false;
     });
     
//Toggle for class toggle    
       	//On load hide the div
  	 $(".toggle div").hide();
 
    
     //On click toggle the next div  
     $(".toggle h3").click(function(event){
    	$(this).next().slideDown().toggle();
     	
// Stop the link click from doing its normal thing
       return false;
     });


     
//Toggle for defintion lists with the class toggleDef     
       	//On load hide the div
  	 $("dl.toggleDef dd").hide();
 
    
     //On click toggle the next div  
     $(".toggleDef dt").click(function(event){
    	$(this).next().slideDown().toggle();
     	
// Stop the link click from doing its normal thing
       return false;
     });     
   });

//Add a + details link to h3's inside a toggle div on the performaces page
//Get the document ready
  $(document).ready(function(){
	
 	//On load prepend a span-wrapped anchor inside the cite
  	 $(".performances .toggle h3")
      .prepend("<span><a href='' title='Show details'>+ details</a></span>"); 
     	
// Stop the link click from doing its normal thing
       return false;
     });
     
//Add a + details link to h3's inside a toggle div on the recordings page
//Get the document ready
  $(document).ready(function(){
	
 	//On load prepend a span-wrapped anchor inside the cite
  	 $(".recordings .toggle h3")
      .prepend("<span><a href='' title='Show details'>+ details</a></span>"); 
     	
// Stop the link click from doing its normal thing
       return false;
     });
