$("document").ready(
	function()
	{
			$("input[type='checkbox']").change(function(){
			$("input[type='checkbox']").each(function(){
				if($(this).is(":checked")){
					$('#div'+$(this).attr("id")).html(make_node($(this).attr("id"), $("#td"+$(this).attr("id")).text(), $("#p"+$(this).attr("id")).text(), $("#q"+$(this).attr("id")).val()));
				}
				else{
					$('#div'+$(this).attr("id")).html('');
				}
			});});


			$("#update").click(function(){
				$("input[type='checkbox']").each(function(){
				if($(this).is(":checked")){
					$('#div'+$(this).attr("id")).html(make_node($(this).attr("id"), $("#td"+$(this).attr("id")).text(), $("#p"+$(this).attr("id")).text(), $("#q"+$(this).attr("id")).val()));
				}
				else{
					$('#div'+$(this).attr("id")).html('');
				}

			});alert('Your cart has been updated.');});

	});

function make_node(id, title, price, quantity)
{
	return '<input name="item_name_'+id+'" type="hidden" value="'+title+'"/><input name="item_price_'+id+'" type="hidden" value="'+price+'"/><input name="item_description_'+id+'" type="hidden" value="MS Access Application"/><input name="item_quantity_'+id+'" type="hidden" value="'+quantity+'"/><input name="item_currency_'+id+'" type="hidden" value="GBP"/>';
}
