


/*
 * initialiseProductList()
 */
function initialiseProductList()
{
	instock = "n";
brand = 't2c';
if ( productList.length == 0 )

	{
		/*                           
		   0= CODE
		   1= MATERIAL
		   2= PRICE
		   3= ITEM NAME
		*/		   
		
		productList[0] = new Array ('BAMBINEOBOOSTERS','Bambineo Bamboo Booster 3 Pack','6.00','Bambineo Bamboo Booster 3 Pack');
	}		
}	




function getPrice()
{
	document.write(productList[0][2]);	
}




