$(document).ready(function() {

	 /* DIV loading*/
	 $("#loading").ajaxStart(function(){
	   $(this).show();
	 });
	
	 $("#loading").ajaxStop(function(){
	   $(this).hide();
	 });
	 
	
		


	  	
		  		
	$("#comment_form").submit(function() { 
		
		  
	 	$.post("/system/request/blogs_add_comments.php",  $("#comment_form").serialize(), function(data){

		   	$("#new_comment").before(data.comment); 
	   		
	   		$('#message').val('');
		},"json");		
		

		return false; 
	}); 			 

});


/*	
function basket_del_item (id){
	$.post("/system/request/basket_del_item.php",  {id: id}, function(data){
		
   	
   		$("#stats").html(data.stats);
   		$("#tr_"+id).hide();
   		
		$('#jGrowl').jGrowl(data.mess , { life: 5000 });
   		$("#basket_count").html(data.count);
   		$("#basket_price").html(data.summ);
   		$("#total_price").html(data.summ);
   		
   		
	},"json");		
	
}
  
  $.get("/system/request/basket.php", { id : $(this).find("input[name*='id']").val(), count: $(this).find("input[name*='count']").val() }, function(data){
		$.jGrowl("Товары добавлены в корзину.", { life: 2000 });
   		$("#basket_count").html(data);
   		
	});	
	*/       
	

