﻿/// <reference path="jquery-1.4.1-vsdoc.js" />

function Recalculate() {
    $(document).ready(function() {
        var prices = new Array();
        var counts = [];
        var total = 0.0;

        $("#skeneryReview tr td.itemPrice").each(function() { prices.push($(this).text()) });
        $("#skeneryReview tr td input").each(function() { counts.push($(this).val()) });
        // var quotedCSV = '"' + prices.join('", "') + '"';

        for (var i = 0; i > prices.length; i++) {
            total = total + prices[i];
        }

        alert(total);
    });
}

function Sum() {

}