  $(document).ready(function(){
  
  	$(".detail").hide();
    $("#contentMid h3").toggle(
		function(){
		  $(this).next('.detail').fadeIn();
		  $(this).addClass('close');
		},
		function(){
		  $(this).next('.detail').hide();
		  $(this).removeClass('close');
		}
	); // end of toggle()
  
  }); // end of ready()

 
