// bitrate price

var shoutcast_price = new Array();

shoutcast_price[24] = new Array();
shoutcast_price[32] = new Array();
shoutcast_price[48] = new Array();
shoutcast_price[56] = new Array();
shoutcast_price[64] = new Array();
shoutcast_price[96] = new Array();
shoutcast_price[128] = new Array();

shoutcast_price[24][50] = 10;
shoutcast_price[24][100] = 20;
shoutcast_price[24][150] = 35;
shoutcast_price[24][200] = 40;

shoutcast_price[32][50] = 12;
shoutcast_price[32][100] = 24;
shoutcast_price[32][150] = 36;
shoutcast_price[32][200] = 48;

shoutcast_price[48][50] = 16;
shoutcast_price[48][100] = 32;
shoutcast_price[48][150] = 48;
shoutcast_price[48][200] = 64;

shoutcast_price[56][50] = 18;
shoutcast_price[56][100] = 36;
shoutcast_price[56][150] = 54;
shoutcast_price[56][200] = 72;

shoutcast_price[64][50] = 20;
shoutcast_price[64][100] = 40;
shoutcast_price[64][150] = 60;
shoutcast_price[64][200] = 80;

shoutcast_price[96][50] = 28;
shoutcast_price[96][100] = 56;
shoutcast_price[96][150] = 84;
shoutcast_price[96][200] = 112;

shoutcast_price[128][50] = 36;
shoutcast_price[128][100] = 54;
shoutcast_price[128][150] = 90;
shoutcast_price[128][200] = 144;


// diskquota price

var diskquota = new Array();

diskquota[500] = new Array();
diskquota[1000] = new Array();
diskquota[2000] = new Array();
diskquota[5000] = new Array();
diskquota[10000] = new Array();

// diskquota[500] = 16.50;
diskquota[1000] = 23.50;
diskquota[2000] = 27.50;
diskquota[5000] = 37.50;
diskquota[10000] = 41.50;

