$(document) .ready(function() {
		$("#tabs").tabs();
	});



$(document) .ready(function () {

  $(".contents_expand b").toggle(function() {
    
       $(this).text('Hide contents...');
       $(this).next().slideDown();
		
		}, function() {
		
      $(this).text('Show contents...');
      $(this).next().slideUp();
	
   }); 
});


$(document) .ready(function () {

  $(".item_expand b").toggle(function() {
    
       $(this).text('Read less...');
       $(this).next().slideDown();
		
		}, function() {
		
      $(this).text('Read more...');
      $(this).next().slideUp();
	
   }); 
});



$(document) .ready(function () {

  $(".menuAbt_expand b").toggle(function() {
    
       $(this).text('About the Society');
       $(this).next().slideDown();
		
		}, function() {
		
      $(this).text('About the Society');
      $(this).next().slideUp();
	
   }); 
});






$(document) .ready(function () {

  $(".menuBiog_expand b").toggle(function() {
    
       $(this).text('Biography of Ivor Gurney');
       $(this).next().slideDown();
		
		}, function() {
		
      $(this).text('Biography of Ivor Gurney');
      $(this).next().slideUp();
	
   }); 
});




$(document) .ready(function () {

  $(".menuArt_expand b").toggle(function() {
    
       $(this).text('Articles by Gurney');
       $(this).next().slideDown();
		
		}, function() {
		
      $(this).text('Articles by Gurney');
      $(this).next().slideUp();
	
   }); 
});

$(document) .ready(function () {

  $(".menuWri_expand b").toggle(function() {
    
       $(this).text('Writings on Gurney');
       $(this).next().slideDown();
		
		}, function() {
		
      $(this).text('Writings on Gurney');
      $(this).next().slideUp();
	
   }); 
});


$(document) .ready(function () {

  $(".menuBib_expand b").toggle(function() {
    
       $(this).text('Bibliographies');
       $(this).next().slideDown();
		
		}, function() {
		
      $(this).text('Bibliographies');
      $(this).next().slideUp();
	
   }); 
});





$(document) .ready(function () {

  $(".menuMS_expand b").toggle(function() {
    
       $(this).text('Manuscripts & Archives');
       $(this).next().slideDown();
		
		}, function() {
		
      $(this).text('Manuscripts & Archives');
      $(this).next().slideUp();
	
   }); 
});


