// $Id$
var exhibition_loading = false;
$(document).ready(function(){
  $("#edit-exhibition").click(function() { $("#edit-exhibition").attr('checked') == 1 ? $("#toggle-exhibition").show() : $("#toggle-exhibition").hide(); });
  $('.exhibition-details:not(:first)').hide();
  $('.exhibition h2 span a').click(function() {
	  exhibition_loading = true; // stop the next span from opening up
  });
  $('.exhibition h2 span').click(function() {
	if (!exhibition_loading) {
	  var exhibition = $(this).parents('.exhibition:first'); 
	  exhibition.find('.exhibition-details').slideToggle('fast');
	  $(this).toggleClass('open');
	}
	exhibition_loading = false;
  });
});