$(document).ready(function(){
	$('tbody.cool:not(:first)').hide();
	$("tbody").click(function () {
		$(this).find("a.expand").toggleClass('upper');
      		$(this).find("span.tog").toggle()						  
	  	$(this).next("tbody.cool").toggle();
	});
});
