


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

	{
		productList[0] = new Array ('TOD9TOGDUVET','9 Tog Cot Bed/Toddler Bed Duvet','15.00','9 Tog Cot Bed/Toddler Bed Duvet');
	}		
}	





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


