// JavaScript Document

// NGV Multimedia, Jon Luker, June 2009
//
// Created for Dali exhibition page
// requires jQuery
//
// Purpose:
// - initiate and handle folded up areas of content
//

/*global jQuery */




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("LESS");
	},function(){ 
		jQuery("#expander_exhib_content").hide();
		jQuery("#expander_exhib_button").text("MORE");
	});
	
});


