// PKL jQuery


$(document).ready( function() {

$(function(){
var radioVal = $('input:radio[name=product]').val();
var radioId = $('input:radio[name=product]').attr('id');
var priceID = 'price_'+this.radioId;
var qty    = $('#qty').val();
var price = $('#priceID').val(); // hidden price assigned to radio Button
var ttlPrice = qty * price;
$('#price_box').val(ttlPrice);
});

});// doc ready



function prodConfigureSetPrice(id){
var id_num =  id.match(/\d/g);
id_num = id_num.join("");
var priceID = 'price_'+id;
var price = document.getElementById(priceID).value;//hidden price assigned to radio button

document.getElementById('price_box_'+id_num).value = price;// assign price value to text box

document.getElementById('DynamicCartPrice-'+id_num).value = price;// price that goes to cart

}



