// items structure
// each item is the array of one or more properties:
// [text, link, settings, subitems ...]
// use the builder to export errors free structure if you experience problems with the syntax

var MENU_ITEMS = [
	['Home', 'default.html',
		
	],
	['About Us', null, null,
		['Our Company', 'history1.htm'],
		['Management Team', 'management1.htm', 
				]

	],
	['Products', null, null,
		['PHS-Process Heat Solutions',null,null,
		['Pneumatic Forced Draught Boiler','prod_pfdb.htm'],
		['Coal & Wood Fired Packaged Boiler','prod_ptcwfb.htm'],
		['Combination Type Boilers','prod_seb.htm'],
		['Bi-drum Boilers','prod_bidrum.htm'],
	    ],
	    
		['IPP-Industrial Process & Power (Division)', null,null,
				//['Product range','prod_rang.htm'],
				['AFBC','prod_afbc.htm'],
				['Travelling Grate Boiler','prod_tg1.htm'],
				['Waste Heat Recovery Boiler','prod_whrb1.htm'],
				['Others','prod_others1.htm'],
		
		],
	],
	['Facilities', null, null,
		['Manufacturing Facilities', 'mfg_facilities.htm'],
		['Engineering Facilities', 'engg_facilities.htm'],
//		['Quality System', 'facility_quality.html']
	],
	['Careers', 'situationv.htm'
	],

	['Quality','facility_quality.html'
	],
	['Our Clients',null, null,	
		['PHS-Process Heat Solutions', 'ptb_exp.htm'],
		['IPP-Industrial Process & Power (Division)', 'PowerBoilers_C.htm'],
],

	['Contact Us', null, null,
	    ['Corporate Office', 'Corpoff.html'],
		['Head Office & Works', 'headoff.html'],
		['Branch Offices', 'map1.htm'],
		['Request For Quote', 'enquirynew1.html'],
	],
	
	['', null, null,
		
	],
	

];


