
jQuery(function($) {
$(".cselect").hover(
  function () {
    $(this).css({ color: "blue", background: "#efefef" });
  },
  function () {
    $(this).css({ color: "black", background: "transparent" });
  }
);
	
	
	
	
	$(".cselect").click(
		  function () {
	    var id = $(this).attr("id");
	    $(".ah").fadeOut("slow");
	    if(id == 'h') {
	    	$(".ah").fadeIn("slow");
	    }
	    $("."+id).fadeIn("slow");
	  }
	);

});





