var arPrices = new Array(7);
arPrices[0] = 17.95; // earth
arPrices[1] = 14.95; // moon
arPrices[2] = 15.95; // mars
arPrices[3] = 17.95; // saturn
arPrices[4] = 17.95; // galaxy
arPrices[5] = 17.95; // jupiter
arPrices[6] = 17.95; // firemagic
arPrices[7] = 15.95; // firestorm
arPrices[8] = 14.95; // hellfire

//var nVal = Math.round(2123);

function RecalcPrice()
{
//	document.shoppingcart.totalprice.value = "Test";
//	return;
	var price = new Number();
	var discountedPrice = new Number();

	count = 0;
	price = 0.0;

	for(var i=0; i < shoppingcart.items.length; i++ )
	{
		if ( shoppingcart.items[i].checked )
		{
			price+=arPrices[i];
			count++;
		}
	}
	
	discountedPrice = price;

	if ( count <= 1 )
	{
		document.shoppingcart.discount.value = "";
	}
	else
	{
		discountedPrice = price * 0.7;
		
		var nSave = Math.round((price-discountedPrice)*100)/100.0;
		document.shoppingcart.discount.value = "multiple order discount: 30% (You save $" + nSave + "!)";
	}

	discountedPrice = Math.round(discountedPrice*100)/100.0;
	price = Math.round(price*100)/100.0;

	document.shoppingcart.totalpriceDiscounted.value = "$" + discountedPrice;

	if ( discountedPrice == price )
	{
		document.shoppingcart.totalprice.size = 1;
		document.shoppingcart.totalprice.value = "";
	}
	else
	{
		document.shoppingcart.totalprice.size = 5;
		document.shoppingcart.totalprice.value = "$" + price;
	}
}