﻿//Кол-во товаров в корзине
var count = 0 ;
//ID товаров в корзине
var productsinbasket = new Array();
$(document).ready(function(){
	$("img").click(function () {
		if ($(this).attr("check") == '0'){
			$(this).attr("src",'/img/productCheck.jpg');
			$(this).attr("check",'1');
			productsinbasket[productsinbasket.length] = $(this).attr("idp");
		}
		else if ($(this).attr("check") == '1'){
			$(this).attr("src",'/img/productNonCheck.jpg');
			$(this).attr("check",'0');
			for (i=0;i<productsinbasket.length;i++){if (productsinbasket[i]==$(this).attr("idp"))break;}
			productsinbasket.splice(i,1);
		}
	})
	count = $("#countInRec").val() * 1;
})
function inbasket(){
	if(!loginUser){alert(language.must);return false;}
	if (productsinbasket.length == 0){alert(language.selectproduct);return false;}
	var save='';
	for (i=0;i<productsinbasket.length;i++){if (i!=0)save+=",";save +=productsinbasket[i];}
	$.post("/shop/inbasket/", { basketNew: save },
	  function(data){
		data = data * 1;
		count = data;
		$("#countInRec").html(data);
		$("#countInRec2").html(data);
		alert(language.addproduct)
	  });
}
function inbasketProduct(idp){
	if (productsinbasket.length == 0){
		productsinbasket[0] = idp;
		inbasket();
	}
}
