// 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 = [
	['WiFix', null, null,
		['About', 'http://wifix.sourceforge.net/about.html'],
		['Download', 'http://wifix.sourceforge.net/download.html'],
		['News', 'http://wifix.sourceforge.net/news.html']],
	['SourceForge.net', null, null,
		['Project Home', 'http://sourceforge.net/projects/wifix'],
		['Bugs', 'http://sourceforge.net/tracker/?group_id=205511&atid=993937'],
		['Downloads', 'http://sourceforge.net/project/showfiles.php?group_id=205511'],
		['Feature Requests', 'http://sourceforge.net/tracker/?group_id=205511&atid=993940'],
		['Forums', 'http://sourceforge.net/forum/?group_id=205511']],
	[''],
	['Contact', 'mailto:wifish@users.sourceforge.net?subject=WiFix/contact']
];

