function notify(msg) {
	$('<div id="notify"></div>').appendTo('body').text(msg).fadeIn(800).fadeOut(800,function(){$(this).remove()});
}
function cart_update() {
/*
	$.get(
		'/store/cart_amount/',
		function(response) {
			$('#goods_count').text(response);
		}
	);
*/
	$.get(
		'/store/cart_cost/',
		function(response) {
			$('#goods_cost').text(response);
			if (response > 0) {
				$('#basket:not(.full)').addClass('full');
			} 
			else {
				$('#basket.full').removeClass('full');
			}
		}
	);
}
function callbacks_num() {
	$.post('/admin/callbacks/counter/', function(response){
		$('.menu a:contains("Звонки")').append(' ('+response+')');
	});
}
