// JavaScript Document

// Purpose:
// - initiate and handle folded up areas of content
//



jQuery(document).ready(function(){
	
	jQuery("#expander_exhib_content").hide();
	
	jQuery("#expander_exhib_button").toggle(function(){
		jQuery("#expander_exhib_content").show();
		jQuery("#expander_exhib_button").text("Close");
	},function(){ 
		jQuery("#expander_exhib_content").hide();
		jQuery("#expander_exhib_button").text("View image captions");
	});
	
});


	