// independently show and hide
	$(document).ready(function() {
  $('div.demo-show:eq(0)> div').hide();
  $('div.demo-show:eq(0)> h2').click(function() {
	$(this).next().slideToggle('fast');
  });
});
	
	
