/******************************************************************************
 Menu interno
/*****************************************************************************/


var base = "/en/products_brands";
var base_name = "Products & brands";

ml    = new left_menu(base_name, base);
menu  = new Array();
index = -1;

// 1
menu[++index] = 	new item_level1("Our products",										base+"/our_products");
	menu[index].addItem(	new item_level2("Products by division",						base+"/our_products/by_division"));     
	menu[index].addItem(	new item_level2("Products by country",						base+"/our_products/by_country"));     
	menu[index].addItem(	new item_level2("Products strategy",						base+"/our_products/products_strategy"));     
	menu[index].addItem(	new item_level2("Sensitivity factors and growth drivers",	base+"/our_products/sensitivity"));
	//menu[index].addItem(	new item_level2("Market position",							base+"/our_products/market_position"));
	//menu[index].addItem(	new item_level2("Market outlook",							base+"/our_products/market_outlook"));

// 2
menu[++index] = 	new item_level1("Our brands",										base+"/our_brands");
	menu[index].addItem(	new item_level2("Parmalat brand and logo",					base+"/our_brands/brand_logo"));     
	menu[index].addItem(	new item_level2("Brands portfolio",							base+"/our_brands/brands_portfolio"));     
	menu[index].addItem(	new item_level2("Brands strategy",							base+"/our_brands/brands_strategy"));     
	//menu[index].addItem(	new item_level2("Products news",							base+"/our_brands/products_news"));
	//menu[index].addItem(	new item_level2("Our brands throughout history",			base+"/our_brands/brands_history"));
  
// 3
menu[++index] = 	new item_level1("Innovation",										base+"/innovation/");
	//menu[index].addItem(	new item_level2("Product innovation",						base+"/innovation/product_innovation"));     
	//menu[index].addItem(	new item_level2("Packaging innovation",						base+"/innovation/packaging_innovation"));     
	//menu[index].addItem(	new item_level2("Technological innovation",					base+"/innovation/tec_innovation"));     
	//menu[index].addItem(	new item_level2("Research & development policy",			base+"/innovation/r_d_policy"));
	
// 4
menu[++index] = 	new item_level1("Quality",										base+"/quality/");
	//menu[index].addItem(	new item_level2("Advertising campaigns",					base+"/advertising/adv_campaigns"));

// 5
menu[++index] = 	new item_level1("Advertising",										base+"/advertising/");
	menu[index].addItem(	new item_level2("Advertising campaigns",					base+"/advertising/adv_campaigns"));

// 6
menu[++index] = 	new item_level1("Awards",										base+"/awards/");

// 7
//menu[++index] = 	new item_level1("Events",										base+"/events/");

for (i=0; i < menu.length; i++) ml.addItem (menu[i]);
