// toggle items and categories
$(document).ready(function(){$(".item_body").hide();$(".item_head").click(function(){$(".item_body").hide();$(".item_head").show();$(this).prev(".item_body").slideToggle(300);$(this).hide();});});$(document).ready(function(){$(".ctgy_body").hide();$(".ctgy_head").click(function(){$(".ctgy_body").hide();$(".ctgy_head").show();$(this).prev(".ctgy_body").slideToggle(300);$(this).hide();});});
