var goodsInfo = new Array();
var goodsSize = new Array(1000, 1500, 2500, 3000, 3500, 5000, 5500, 6000, 6500, 7000, 10000, 10500, 11000, 11500, 12000, 12500, 13000, 13500, 14000, 14500, 15000, 20000, 20500, 21000, 21500, 22000, 22500, 23000, 23500, 24000, 24500, 25000);
var goodsName = new Array("Light 1GB", "Light 1GB", "Standard 2.5GB", "Standard 2.5GB", "Standard 2.5GB", "Plus 5GB", "Plus 5GB", "Plus 5GB", "Plus 5GB", "Plus 5GB", "Premium 10GB", "Premium 10GB", "Premium 10GB", "Premium 10GB", "Premium 10GB", "Premium 10GB", "Premium 10GB", "Premium 10GB", "Premium 10GB", "Premium 10GB", "Premium 10GB", "Enterprise 20GB", "Enterprise 20GB", "Enterprise 20GB", "Enterprise 20GB", "Enterprise 20GB", "Enterprise 20GB", "Enterprise 20GB", "Enterprise 20GB", "Enterprise 20GB", "Enterprise 20GB", "Enterprise 20GB");
var goodsPrice = new Array(20000, 20000, 37500, 37500, 37500, 65000, 65000, 65000, 65000, 65000, 110000, 110000, 110000, 110000, 110000, 110000, 110000, 110000, 110000, 110000, 110000, 220000, 220000, 220000, 220000, 220000, 220000, 220000, 220000, 220000, 220000, 220000);
var goodsAddSize = new Array(0, 500, 0, 500, 1000, 0, 500, 1000, 1500, 2000, 0, 500, 1000, 1500, 2000, 2500, 3000, 3500, 4000, 4500, 5000, 0, 500, 1000, 1500, 2000, 2500, 3000, 3500, 4000, 4500, 5000);

var strAddSize = 500;
var stdAddPrice = 10000;

for (i=0; i<goodsSize.length; i++)
{
	goodsInfo[i] = new Array();
	goodsInfo[i]["size"] = goodsSize[i];
	goodsInfo[i]["name"] = goodsName[i];
	goodsInfo[i]["price"] = goodsPrice[i];
	goodsInfo[i]["add_size"] = goodsAddSize[i];
	goodsInfo[i]["add_price"] = (goodsAddSize[i] / strAddSize) * stdAddPrice;

	if (goodsAddSize[i] >= 2500)
	{
		goodsInfo[i]["add_price"] = goodsInfo[i]["add_price"] - (goodsInfo[i]["add_price"] * 0.1);
	}
}


