/**
 * 購入する商品の合計金額の計算と表示
 *
 * @param string item_id
 */
function total_price( loop_length ){ 
	var sum_price = 0;

	for( i=0; i<loop_length; i++ ){
		sum_price += document.getElementById('item_'+i).value * document.getElementById('price_'+i).value;
	}
	document.getElementById('total_price').innerHTML = sum_price;

}



/**
*
*/
/*
function individual_price( key_id, item_id, unit_price, loop_length ){

}
*/

