$(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 () {

  $(".menuPrev_expand b").toggle(function() {
    
       $(this).text('Previous Courses');
       $(this).next().slideDown();
		
		}, function() {
		
      $(this).text('Previous Courses');
      $(this).next().slideUp();
	
   }); 
});






$(document) .ready(function () {

  $(".menuCourse_expand b").toggle(function() {
    
       $(this).text('The Course');
       $(this).next().slideDown();
		
		}, function() {
		
      $(this).text('The Course');
      $(this).next().slideUp();
	
   }); 
});




$(document) .ready(function () {

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

$(document) .ready(function () {

  $(".menuEvents_expand b").toggle(function() {
    
       $(this).text('Exhibitions & Events');
       $(this).next().slideDown();
		
		}, function() {
		
      $(this).text('Exhibitions & Events');
      $(this).next().slideUp();
	
   }); 
});


$(document) .ready(function () {

  $(".menuBiogs_expand b").toggle(function() {
    
       $(this).text('People');
       $(this).next().slideDown();
		
		}, function() {
		
      $(this).text('People');
      $(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();
	
   }); 
});


