/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


/* obliczanie ile kasy bedzie kosztowala dana ilosc zdjec oraz ustawianie odpowiedniej ilosc w formularzu paypal*/
function count_paypal(my_this){
  /* pobieram element parent dla wszystkich elementów w danym wierszu */
    var parent = my_this.parent().parent();
    var sum = $('.product_price',parent).val().split("|")[0]*$('.product_quantity',parent).val();
    $('.product_suma',parent).html("&pound;"+ sum.toFixed(2).toString());
    /*do formularza paypal*/
    $('.amount',parent).val($('.product_price',parent).val().split("|")[0]);
    $('.quantity',parent).val($('.product_quantity',parent).val());
    $('.item_name',parent).val($('.product_name',parent.prev()).html()+" "+$('.product_price',parent).val().split("|")[1]);
    $('.product_unit',parent).text($('.product_price',parent).val().split("|")[2]);
}

