$(document).ready(function(){
$("ul.catalog_list > ul").hide();
$("#_c_list li a").click(function(e){
 var el = $(e.target).parent().next(); 
 
 if(el.is(":hidden")){el.show("fast");} else {if(el.is(":visible")) el.hide("fast");}
 


  
});


  	$("#zap").click(function(){
  		var container = $("<div id=cat_cont></div>");
        $("#load").html("&nbsp;Загружаю...");
  		container.css({opacity: "0"});
        if($("#cat_cont").length){
         $("#cat_cont").fadeIn("slow");
$("#load").text("");
        } else {
  		$.ajax({
  	 	  url:  "/include_areas/catalog_zap_in_index.php",
   		  type: "POST",
   		  dataType: "text",
   		  error: function(){
   		  alert("Не могу соедениться с сервером");
   		  },
   	      success: function(data){
   	       container.html("<h3>Запчасти по категориям</h3><a id=close>Закрыть</a>"+data).appendTo("#left").animate({opacity: 1}, "slow");$("#load").text("");
   	      }
   	    });
   	    }
   	$("#close").live("click", function(){
   		
   		$("#cat_cont").fadeOut("slow");
   	});

  	});
  });