$(document).ready(function(){
			$(".clsShowHide").click(function() {
				$(this).next().toggle("slow");
			}).next().hide();
});