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) 
{
	var html = '';
	
	if(count) 
	{		
		html += '<a href="/basket/" class="korzina">'+ count +' ед. товара на '+price+' Р</a>';		
		html += '';				
	} 
	else 
	{		
		html += '<a href="/basket/" class="korzina">Корзина пуста</a>';
		html += '';
	}
	
	$('#basket1').html(html);
}

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

