 var $j = jQuery.noConflict();//Because prototype and jquery conflict with one another.

$j(document).ready(function() {

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