/**
 * DOM ready callback handler
 */
$(document).ready(function(){
	//
});

var ajaxCart = {
	add : function(id,count)
	{
		var ajaxurl 	= gv_baseurl+'/ajax/cart/';
		var ajaxdata	= {'do':'add','id':id,'count':count};
		$.ajax({
			url			: ajaxurl,
			type		: 'post',
			data 		: ajaxdata,
			dataType	: 'json',
			success		: function(response){
				//alert(response);
				//$("#cartbox_price").html(response.productprice+'zł');
				//$("#cartbox_count").html(response.productcount);
				//$("#cartbox_last").removeClass('emptycart');
				//var lasthtml = 'Ostatnio dodany produkt:';
				//lasthtml += '<img style="margin:20px auto; width:140px;" src="'+response.lastthumb+'" />';
				//lasthtml += '<p>'+response.lastname+'</p>';
				//$("#cartbox_last").html(lasthtml);
				$("#dialog p").html('Produkt został dodany do koszyka.');
				$('#dialoglink').trigger('click');
				
				var info = 'Aktualnie w koszyku<br />znajduje się ' + response.productcount + ' produktów<br />za łączną kwotę:<br /><p class="price">' + response.productprice + '</p>';
				$('#rc_cart .info').html(info);
			},
			error 		: function(XMLHttpRequest, textStatus, errorThrown){
				alert(textStatus);
			}
		});
	}
}

