$(document).ready(function(){

	$(".set :radio").click(function() {
		var name = $(this).attr("name");
		$("#frm_"+name+"_set .item").css({backgroundColor: "#ffffff"});
		$(this).parent().parent().css({backgroundColor: "#e2e2e2"});
		
	
		document.getElementById("custom_subtotaal").innerHTML = 'Berekenen...';
		
		
		$.post('/ajax/custom_bike_processor.ajax.php', $('#frm_custom_bike').serialize(), function (data, textStatus) {
			
			document.getElementById("custom_subtotaal").innerHTML = '&euro; '+data;
			document.getElementById("head_custom_subtotaal").innerHTML = '<p class="vanprijs"></p> <p class="voorprijs">&euro;'+data+'</p>';	
			
			hidden_pid = document.getElementById('hidden_pid').value;
			req = 'pid='+hidden_pid;
			//alert(req);
			
			$("#cstm_bestellen").load('/includes/product_custom_bestelblok.inc.php?'+req);

		});
						  
  	});
	
	$(".set input:checked").parent().parent().css({backgroundColor: "#e2e2e2"});
	
});

