$(function () {
	$("#submit").click(function() {
		var ProductId = $(this).attr("value");
		var Kleur = $("#kleur").attr("value");
		var Aantal = $("#aantal").attr("value");
		Winkelmand({ Id: ProductId, kleur: Kleur, aantal: Aantal });
	});
	$(".ordermessage:not(#submit)").click(function() {
		Winkelmand({ Id: $(this).attr("value")});
	});
})
function Winkelmand(Parameters) {
	$.get("winkelmand-toevoegen.php", Parameters, function(data) {
		$("#winkelmand").html(data);
	}, "html");
}
