//Get the document ready
  $(document).ready(function(){
  	
  	//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;
     });
   });

