/*
 * show-hide.js
 *
 * 2008 John Resig (jquery.com)
 * http://www.learningjquery.com/2007/02/more-showing-more-hiding
 *
 * $Date: 2009-01-07 11:10:17 -0400 (Thu, 7 January 2009) $
 */
$(document).ready(function() {
  $('div.demo-show:eq(0)> div').hide();  
  $('div.demo-show:eq(0)> h3').click(function() {
    //$('div.expand:eq(1)').toggle();
	//$('div.demo-show:eq(0)> h3:first-child').toggle();
	$(this).next().slideToggle('fast');
	
  });
});