$(document).ready(function() {

	// Listen to the inputs at the top
	// and update on "keyup"
	$('.prod').keyup(function(){
		inputName = $(this).attr("name");
		inputValue = $(this).attr("value");
		$("#"+inputName).attr("value",inputValue);
	});
	
	// Listen to the inputs at the bottom
	// and update on "keyup"
	$('.orderGroup1 input').keyup(function(){
		inputName = $(this).attr("name");
		inputValue = $(this).attr("value");
		$("."+inputName).attr("value",inputValue);
	});
	
	// Listen to the inputs at the top
	// and update on "keyup"
	$('.orderGroup1 input').each(function(){
		inputName = $(this).attr("id");
		inputValue = $(this).attr("value");
		$("."+inputName).attr("value",inputValue);
	});


});