$(document).ready(function() {
	$("#center-column-table").css("height", $("#center-column-table").parent().height());
});

function add2basket(id)
{
	pageTracker._trackPageview('/order_products');
	$("body").append('<div class="order-popup order-popup-wait"></div>');
	$.post('/catalog/add2cart.php', {amount: ( $("#amount_"+id).val() ), ID: id}, function(data) {
		arTmp = data.split("||")
		$(".cart-top").html(arTmp[0]);
		if(typeof(arTmp[1]) == "undefined") arTmp[1] = '';
		if((arTmp[1]).length>0)
			$(".order-popup").css("height", "140px");
		else $(".order-popup").css("height", "60px");
		if((arTmp[1]).length>0)
			$(".order-popup").css("width", "460px");
		else $(".order-popup").css("width", "260px");
		
		$(".order-popup").removeClass("order-popup-wait").html("<span class=\"close\" onclick=\"$('.order-popup').remove();\"></span>"+((arTmp[1]).length>0?'<p class="warning">'+arTmp[1]+'</p>':'')+"<p><strong>Товар добавлен в корзину</strong></p><p><a href=\"/personal/cart/\">Перейти к оформлению заказа</a></p><p><a href=\"#\"  onclick=\"$('.order-popup').remove(); return false;\">Продолжить выбор товаров</a></p>");
	});
}
