

function SelectBoxOption(value,text)
{
	this.value = value;
	this.text = text;
}


var griptape = new Array(1); 

griptape[0] = new SelectBoxOption("<br>sheet of Grits grip tape - 2.99","sheet of Grits grip tape - $2.99");
griptape[1] = new SelectBoxOption("<br>sheet of JESSUP grip - 3.99","sheet of Jessup - $3.99");
griptape[2] = new SelectBoxOption("<br>sheet of IRON HORSE grip - 4.99","sheet of Iron Horse - $4.99");
griptape[3] = new SelectBoxOption("<br>sheet of red grip - 4.99","sheet of red grip tape - $4.99");
griptape[4] = new SelectBoxOption("<br>sheet of green grip - 4.99","sheet of green grip tape - $4.99");
griptape[5] = new SelectBoxOption("<br>sheet of blue grip - 4.99","sheet of blue grip tape - $4.99");
griptape[6] = new SelectBoxOption("<br>sheet of neon pink grip - 4.99","sheet of neon pink grip tape - $4.99");
griptape[7] = new SelectBoxOption("<br>sheet of clear grip - 4.99","sheet of clear grip tape- $4.99");
griptape[8] = new SelectBoxOption("<br>sheet of Shorty's Black Magic grip - 5.29","sheet of Shorty's Black Magic - $5.29");
griptape[9] = new SelectBoxOption(" - 0.00","no thanks");

var hardware = new Array(1); 

hardware[0] = new SelectBoxOption("<br>7/8 inch Grind King Hardware - 2.49","Pack of 7/8 inch Grind King (allen) - $2.49");
hardware[1] = new SelectBoxOption("<br>1 inch Hardware - 1.99","Pack of 1 inch Hardware - $1.99");
hardware[2] = new SelectBoxOption("<br>1 inch Grind King Hardware - 2.49","Pack of 1 inch Grind King (allen) - $2.49");
hardware[3] = new SelectBoxOption("<br>1 inch Lucky Hardware - 2.99","Pack of 1 inch Lucky - $2.99");
hardware[4] = new SelectBoxOption("<br>1 inch Shortys Hardware - 2.99","Pack of 1 inch Shortys - $2.99");
hardware[5] = new SelectBoxOption("<br>1 inch Randoms Hardware - 3.99","Pack of 1 inch Randoms - $3.99");
hardware[6] = new SelectBoxOption("<br>1 1/8 inch Lucky Hardware - 2.99","Pack of 1 1/8 inch Lucky - $2.99");
hardware[7] = new SelectBoxOption("<br>1 1/8 inch Shortys Hardware - 2.99","Pack of 1 1/8 inch Shortys - $2.99");
hardware[8] = new SelectBoxOption("<br>1 1/4 inch Hardware - 1.99","Pack of 1 1/4 inch Hardware - $1.99");
hardware[9] = new SelectBoxOption("<br>1 1/4 inch Shortys Hardware - 2.99","Pack of 1 1/4 inch Shortys - $2.99");
hardware[10] = new SelectBoxOption("<br>1 1/4 inch Grind King Hardware - 2.49","Pack of 1 1/4 inch Grind King (allen) - $2.49");
hardware[11] = new SelectBoxOption("<br>1 1/4 inch Lucky Hardware - 2.99","Pack of 1 1/4 inch Lucky - $2.99");
hardware[12] = new SelectBoxOption("<br>1 1/4 inch Randoms Hardware - 3.99","Pack of 1 1/4 inch Randoms - $3.99");
hardware[13] = new SelectBoxOption(" - 0.00","no thanks");

var risers = new Array(1); 

risers[0] = new SelectBoxOption("<br>1/8 inch (3mm) black rubber riser pads - 1.99","Pair of 1/8 inch (3mm) black rubber - $1.99");
risers[1] = new SelectBoxOption("<br>1/8 inch (3mm) blue rubber riser pads - 1.99","Pair of 1/8 inch (3mm) blue rubber - $1.99");
risers[2] = new SelectBoxOption("<br>1/8 inch (3mm) yellow rubber riser pads - 1.99","Pair of 1/8 inch (3mm) yellow rubber - $1.99");
risers[3] = new SelectBoxOption("<br>1/8 inch (3mm) green rubber riser pads - 1.99","Pair of 1/8 inch (3mm) green rubber - $1.99");
risers[4] = new SelectBoxOption("<br>1/8 inch (3mm) red rubber riser pads - 1.99","Pair of 1/8 inch (3mm) red rubber - $1.99");
risers[5] = new SelectBoxOption("<br>1/8 inch (3mm) clear rubber riser pads - 1.99","Pair of 1/8 inch (3mm) clear rubber - $1.99");
//risers[6] = new SelectBoxOption("<br>1/8 inch (3mm) Grind King riser pads (assorted colors) - 3.49","Pair of 1/8 inch (3mm) Grind King - $3.49");
//risers[7] = new SelectBoxOption("<br>1/4 inch (6mm) black rubber riser pads - 1.99","Pair of 1/4 inch (6mm) black rubber - $1.99");
risers[6] = new SelectBoxOption(" - 0.00","no thanks");

function fillGripList(num, selected)
{
	eval("document.deck"+num).op11.length=0;

	for(var i=0; i< griptape.length; i++)
	{
		eval("document.deck"+num).op11.options[i]=new Option(griptape[i].text, griptape[i].value);
	}
		eval("document.deck"+num).op11.selectedIndex = 2;

	eval("document.deck"+num).op12.checked=true;
}

function fillHardwareList(num, selected)
{
	eval("document.deck"+num).op6.length=0;

	for(var i=0; i< hardware.length; i++)
	{
		eval("document.deck"+num).op6.options[i]=new Option(hardware[i].text, hardware[i].value);
	}
		eval("document.deck"+num).op6.selectedIndex = 8;
}
 
function fillRiserList(num, selected)
{
	eval("document.deck"+num).op8.length=0;

	for(var i=0; i< risers.length; i++)
	{
		eval("document.deck"+num).op8.options[i]=new Option(risers[i].text, risers[i].value);
	}
		eval("document.deck"+num).op8.selectedIndex = 0;
}
