$(document).ready(function(){
		$(".textb3").hide();
		$(".textb2 span").click(function () {
			$("#b"+$(this).attr("id")).slideToggle("slow");
		});
		$(".textb2 span").hover(
				function () {
					$(this).toggleClass("chover");
				}, 
			    function () {
					$(this).toggleClass("chover");
				}
	    );
});