// 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 = [
	['About us', null, null,
		['Administrative Setup', 'http://www.softcomplex.com/support.html'],
	      ['Organizational Structure', 'http://www.softcomplex.com/support.html'],
            ['Directory', 'http://www.softcomplex.com/support.html'],
            ['Annual Reports', null, null, 
				['Annual Report 2006-2007 English'],
                        ['Annual Report 2006-2007 Hindi'],
				['Annual Report 2005-2006 English'],
                        ['Annual Report 2005-2006 Hindi'],
				['Annual Report 2004-2005 English'],
                        ['Annual Report 2004-2005 Hindi']

// there must be no comma after the last element
			],



	],
	['Scientific Programmes', null, null,
		// this is how item scope settings are defined
		['Science Clubs (VIPNET)', 'http://www.softcomplex.com/products/tigra_menu/', {'tw':'_blank'}],
		// this is how multiple item scope settings are defined
		['Ham Radio', '../ReadMeFirst.html', {'tw':'_top', 'tt':'Welcome Page', 'sb':'Test Status Bar Message'}],
		['Astronomy', 'http://www.softcomplex.com/products/tigra_menu/docs/'],
		['VP EduSAT Network', 'http://www.softcomplex.com/forum/forumdisplay.php?fid=29'],
		['PC Interface for science experiments', 'http://www.softcomplex.com/products/tigra_menu/docs/compare_menus.html'],
		['Planet Earth', '../_builder/index.html'],
	],
       
	['Digital Library','http://www.vigyanprasar.gov.in/digilib/'],
	['Discussion Forum', 'http://www.vigyanprasar.gov.in/forum/ClientIndex.aspx'],
	['Publications', null, null,
                        ['New Arrivals','http://www.vigyanprasar.gov.in/Publication/index1.asp'],
['Monthly NewsLetters',null],

				['Books',null],
                       ['Interactive CD',null],
                          ['Video CD',null],
                           ['Audio CD',null],


       ]
];


