/*
 * jQuery 1.1.2 - New Wave Javascript
 *
 * Copyright (c) 2007 John Resig (jquery.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * $Date: 2007-02-27 17:18:47 -0500 (Tue, 27 Feb 2007) $
 * $Rev: 1460 $
 */

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