var goodsTable;

$(document).ready(function(){


	$("#userCatalogueTree").dynatree({
		persist: true,
		fx: { height: "toggle", duration: 200 },
		onClick: function(dtnode){
			if(dtnode.hasChildren()){
			dtnode.toggleExpand();
			}
			else document.location="index.php?cat="+dtnode.data.key;
		},
		clickFolderMode: 3
	});

	recalculateBasket();
});



function recalculateBasket(){
	$.ajax({
		url: '/ajax_add_quicky.php',
		data: "action=show",
		success: function(response){
			$("#divShoppingCart .boxcontent").html(response);
			$("#divShoppingCart .boxcontent").animate({backgroundColor: '#ffff33'}, 500);
			$("#divShoppingCart .boxcontent").animate({backgroundColor: '#fff'}, 1000);
		}
	});
}
