function addToCart(){
	$.post("/_asp/process.cart-add-product.aspx",$("#addToCartForm").serializeArray(),function(data){
		$("#quantityDisplay").text(data.quantity);
		setCookie("myCartQuantity",data.quantity,null,"/");
		$("#addedQ").children("span").text($("#quantity").val()).end().fadeIn("slow");
		$("#quantityDisplayWrapper").css("color","#ffffff").animate({color: "#3f2a1a"},"slow");
	},"json");
	
	return false;
}

$(document).ready(function(){
	
	lastPage = getCookie("myLastItem");
	$("#previous").attr("href",lastPage);
	
	var wL = window.location;
	setCookie("myLastItem",wL,"0","/");
	
	$("#addToCartButton").click(function(){
		addToCart();
	});
	$("#quantity").focus(function(){
		this.select();
	});
	
});
