// 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
//                  last edit 12/03/09 - sunspot url

var MENU_ITEMS = [
	['Propagation', null, null,
		['Solar Information', null, null,
			['Numbered Sunspots', 'http://sohowww.nascom.nasa.gov/sunspots'],
			['Space Weather','http://www.spaceweather.com/'],
	
			
			['Open...', null, null,
				['Open'],
				['Open'],
				['Open'],
				['Open'],
				['Open+']
			],
			['Open', null, null,
				['Open'],
				['Open']
			]
		],
		// this is how custom javascript code can be called from the item
		// note how apostrophes are escaped inside the string, i.e. 'Don't' must be 'Don\'t'
		['Forecasts',null,null,
                  ['NOAA Highlites & Forecast' , 'http://www.swpc.noaa.gov/ftpdir/weekly/WKHF.txt'],
                  ['NOAA Flux Forecast', 'http://www.swpc.noaa.gov/ftpdir/weekly/27DO.txt'],
                  ['NW7US', 'http://hfradio.org/propagation_forecast.html'],
			//['ARRL bulletins', 'http://www.arrl.org/w1aw/prop/']
		],
            ['Technical Data ',null,null,                  
		      ['EHAM ' , 'http://www.eham.net/DX/propagation'],
                  ['WM7D', 'http://www.dxzone.com/cgi-bin/dir/jump2.cgi?ID=5377']
                
		],

            ['DX Spots', null, null,
				
				['Ham Radio','http://www.ham-radio.ch/dxc/'],
				['QRZ','http://www.qrz.com/p/dxc.pl'],
                        ['Open'],
				['Open'],
				['Open']
            ],
		['Real time MUF Map...', 'http://www.spacew.com/www/realtime.php'],
	      ],
	
	['Weather', null, null,
		['7 Day WX Forecast', 'http://forecast.weather.gov/MapClick.php?CityName=Rocky+Mount&state=VA&site=RNK&textField1=36.9966&textField2=-79.8906'],
            ['Tropical Cyclone Page', 'http://www.nrlmry.navy.mil/tc_pages/tc_home.html'],
		['Weather Channel', 'http://www.weather.com/weather/local/24151?lswe=24151&lwsa=WeatherLocalUndeclared&from=whatwhere'],
		['Open', '.....']
      ],
	['Internet', null, null,
				['Speed Check','http://www.speakeasy.net/speedtest/'],
				['Open']
			

	],
	['Open', null, null,
				['Open'],
				['Open']
			

	],

];


