
// ----------------------------------------------------------------
// 
//   Third level menu array used in T5.htm file. 
//  
//   Data order - [ Menu Title , URL , key ]
//
// ----------------------------------------------------------------

var menulist3 =
[
	['Thermostatic Expansion Valves', '20-70-10_products_cooling_thermostatic.html', 'item1'] ,
	['Check Valves', '20-70-20_products_cooling_check.html', 'item2'] ,
	['Solenoid Valves', '20-70-30_products_cooling_solenoid.html', 'item3'] ,
	['Hot Gas Bypass Valves', '20-70-40_products_cooling_hot_gas.html', 'item4'] ,
	['Liquid Injection Valves', '20-70-50_products_cooling_liquid.html', 'item5'] ,
	['Filter Driers', '20-70-60_products_cooling_filter.html', 'item6'] ,
	['Sight Glasses', '20-70-70_products_cooling_sight.html', 'item7'] 
];

// ----------------------------------------------------------------
// 
//   Fourth level menu array for the third level menu item1
//  
//   Data order - [ Menu Title , URL , key ]
//
// ----------------------------------------------------------------

var menulist4_subitem1 = [ 
    ['Level 4 Item 1', '#', 'item1'],
    ['Level 4 Item 2', '#', 'item2'],
    ['Level 4 Item 3', '#', 'item3']    
];

// ----------------------------------------------------------------
// 
//   Fourth level menu array for the third level menu item3
//  
//   Data order - [ Menu Title , URL , key ]
//
// ----------------------------------------------------------------

var menulist4_subitem3 = [ 
    ['Test 123', '#', 'item1'],
    ['Test 456', '#', 'item2'],
    ['Test 789', '#', 'item3']
];


// ----------------------------------------------------------------
// 
//   Hash-map for N4 level menus (the hash key should exist in n3_keys)
//  
//   Data order - [ N3 menu key : N4 menu array ]
//
// ----------------------------------------------------------------

var n4_menus = { 'null' : menulist4_subitem3 , 'null' : menulist4_subitem1 };