// JavaScript Document

// all of the detail sections hide when the DOM is ready
$(document).ready(function() {
  $('div.gallery:eq(0)> div:gt(0)').hide();
  
// to keep first element open by default
	$('div.gallery:eq(0)> h3:lt(1)').toggleClass('opened');
  
    $('div.gallery:eq(0)> h3').click(function() {
    $(this).toggleClass('opened').next().slideToggle('fast');
  });
	
	
  $('#toggle-all').click(function() {
   $('div.gallery > div:hidden').slideDown('fast');
   $('div.gallery:eq(0)> h3').addClass('opened');
	 return false;
  });

	
   $('#hide-all').click(function() {
    $('div.gallery > div:visible').slideUp('fast');
	$('div.gallery:eq(0)> h3').removeClass('opened');
    return false;
   
   });
		
		
});	
		

  
	

	

	
