function add_to_cart(url, item_id) {

	jQuery.ajax({
		type: "POST",
		url: url,
		data: "item_id="+item_id,
		success: function(html){
		 	jQuery("#cart_ajax_module").html(html);
		 	alert('Товар добавлен');
		}
    });

}



function cart_clean(url) {
	
	jQuery.ajax({
		type: "POST",
		url: url,
		success: function(html){
		 	jQuery("#cart_ajax_module").html(html);
		 	alert('Корзина очищена');
		}
    });
		
}


function viewCartForm() {
	jQuery('#cart_form').show();
}
