var listlength = 0;

//--- Create new main array. ---//

var cell = new Array(1) 

//--- Stuff main array entries with objects. ---// 
//--- Main cellback, space before label, label, hyperlink, tab colour --//

cell[0] = new Array("#FFFFFF", "ActiveFont", "Purchase Pocket Diet", "purchase", "#8080C0")  


function LeftMenu(active) {
	for(var i=0; i<=0; i++)	{

//---- Set all cells to default values ---//

		cell[i][0] = "#434A6E"
		cell[i][1] = "InactiveFont"
		cell[i][4] = "#434A6E"
		}

//---- First set all the cells back to grey (clearstate), then set ---//
//---- active cell to white and orange tab etc  ---//
	
	cell[active][0] = "#FFFFFF"
	cell[active][1] = "ActiveFont"
	cell[active][4] = "#8080C0"

	}	