// 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',null, null,],
				 // ['About us',null, null,],
	['Projects', null, null,
		['Current Project', null, null,
			['Goldencounty', 'http://www.hallmarkinfrastructure.co.in/goldencounty.html' 
			  	 // there must be no comma after the last element
			],
			['Zeviera', 'http://www.hallmarkinfrastructure.co.in/goldencounty.html'
			],
			
		],
		// 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'
		['Futured Projects', '' ],
		],
		//['Partners',null, null,],
		//['CSR Activities',null, null,],
		//['Careers',null, null,],
		//['Feedback',null, null,],
		//['Contactus',null, null,],
		
];

