// JavaScript Document
jQuery(document).ready(function()
{
  jQuery("#categoryDescription h1").next("p").hide();
  jQuery("#categoryDescription h1").click(function()
  {
    	jQuery(this).next("p").slideToggle(600);
  });
});

