$(document).ready(function(){

  $(".clientcategory").click(function(){
		$("#clientlistbox").fadeOut("fast");
		var catid = $(this).attr("cat");
		var type = $(this).attr("type");
		
		$(".clientcategory").removeClass("clientcategoryactive");
		$(this).addClass("clientcategoryactive");
		
		$.ajax({
			type: "GET",
			url: "/include/clientlist.php",
			data: "cat="+catid+"&type=Client&cattype="+escape(type),
			success: function(data){
      	$("#clientlistbox").html(data);
        $("#clientlistbox").fadeIn("normal");
			},
			error: function(data, status, error) {
        $("#clientlistbox").html("<div class='boxError'>Error: "+error+"</div>"+data);
        $("#clientlistbox").fadeIn("normal");
			}
		});		

  });


	
});