// Tree structure definition
var TREE1_NODES = [
	["T-Shirts", null, null,
		["Basic", 'http://www.cgipromotions.com/products/basics/basic.html', null,
		],
		["Fashion", null, null,
			["Mens", 'http://www.cgipromotions.com/products/basics/fashion_mens.html', null,
			],
			["Ladies", 'http://www.cgipromotions.com/products/basics/fashion_ladies.html', null,
			],
		],
		["Long Sleeve", 'http://www.cgipromotions.com/products/basics/ls.html', null,
		],
		["Youth", 'http://www.cgipromotions.com/products/basics/youth.html', null,
		],
		["Eco Friendly", 'http://www.cgipromotions.com/products/basics/eco.html', null,
		],
	],
	["Performance", null, null,
		["Tops", 'http://www.cgipromotions.com/products/basics/performancetops.html', null,
		],
		["Bottoms", 'http://www.cgipromotions.com/products/basics/performancebottoms.html', null,
		],
	],
	["Sweats / Hoodies", null, null,
		["Sweatshirts", 'http://www.cgipromotions.com/products/basics/sweatshirts.html', null,
		],
		["Hoodies", 'http://www.cgipromotions.com/products/basics/hoodies.html', null,
		],
		["Sweatpants", 'http://www.cgipromotions.com/products/basics/sweatpants.html', null,
		],
	],
	["Headwear", 'http://www.cgipromotions.com/products/basics/headwear.html'
, null,
	],
	["Outerwear", 'http://www.cgipromotions.com/products/basics/outerwear.html', null,
	],	
	["Business Casual", null, null,
		["Mens", 'http://www.cgipromotions.com/products/basics/businesscasual_mens.html', null,
		],
		["Ladies", 'http://www.cgipromotions.com/products/basics/businesscasual_ladies.html', null,
		],
	],
	["Workwear", 'http://www.cgipromotions.com/products/basics/workwear.html', null,
	],
	["Ladies", 'http://www.cgipromotions.com/products/basics/ladies.html', null,
	],
];