
function shopping_add(id, packing)
{
	var time = new Date();
	var unix = time.getTime();
	
	$.get("http://torg-stroy.com/site/shopping_ajax_add/" + id + "/" + packing + "/" + unix + ".html", function(){
		shopping_get();
	});
    alert('Вы успешно положили выбранный товар в корзину!');	
}

function shopping_get()
{
	var time = new Date();
	var unix = time.getTime();
	
	$.getJSON("http://torg-stroy.com/site/shopping_ajax_get/" + unix + ".html",
		function(data)
		{			
			$("#shopping_products").text(data.products);
			$("#shopping_money").text(data.money);
		}
	);
}

function gotopage(url)
{
	location.href = url;
}

function product_content_get(id)
{
	$.get("http://torg-stroy.com/site/product_content_ajax_get/" + id + ".html",
		function(data)
		{			
			$("#uploadcontent").html(data);			
		}
	);
}
