// 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', '/index.shtml'],
	['Background', '/background.shtml'],
	['GFL Indices', null, null,
	  ['The Global Fiducials Library and the Earth System', '/gflandEarthSystem.shtml'],
	  ['Atmospheric Processes', '/AtmosphericProcesses.shtml'],
	  ['Land Use/Land Cover', '/LandUseLandCover.shtml'],
	  ['Ocean Processes', '/OceanProcesses.shtml'],
	  ['Ice and Snow Dynamics', '/IceandSnowDynamics.shtml'],
	  ['Geologic Processes', '/GeologicProcesses.shtml'],
	  ],

	['Current Projects',null, null,
	     ['Global Climate Change',null, null,	
	         ['Arctic Sea Ice Sites', '/ArcticSeaIce.shtml'],
			 ['Conterminous U.S. Sites', '/USsites.shtml'],			 
		     ['Antarctic Sites', '/Antarctic.shtml'],

			 ],
	     ['GFL Demonstration Projects', '/Publications.shtml'],
	     ],
		 
	//['Data For Review', null, null,
	//   ['Ice and Snow Dynamics', null, null,
	//      [' -- Beaufort Sea', 'gallery/beaufo_pub_gallery.shtmll'],
	//   ],
	//  ],
	['GIS Resources',null, null,
	  ['Coming Soon',''],
	  //['Interactive Map Viewer',''],
	],
	
	//['Request Data Access','/requestAccess.shtml'],
	['FAQ','/FAQ.shtml'],
	['Contact Us','/gfl_contact_us.shtml'],
	['What\'s New','/gfl_whats_new.shtml'],	
];

