function cmfBasketDelete(id) 
{
	return cmfAjaxSend(cmfBaseUrl + '/mainAjax/basket/delete.php', {id: id});
}

function cmfBasketAdd(id) 
{     
	return cmfAjaxSend(cmfBaseUrl + '/mainAjax/basket/add.php', {id: id});
}

function cmfBasket() 
{
	var count = cmfGetCookie('main_basket_count');
	var price = cmfGetCookie('main_basket_price');
	cmfBasketHeader(count, price);
}

function cmfBasketHeader(count, price) 
{	
	if(!count)
		count = "Íåò";
	else
		count = count + "&nbsp;øò.";
	if(!price)
		price = "0";
		
	$('#basketnum').html(count);
	$('#basketsum').html(price);
}


function cmfBasketIsOrder() 
{
	cmfSetValue('isOrder', 1);
}


