// 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.php'],
	['About Us', 'aboutus.php'],
	['Services', 'Services.php', null,

		['Website Development','WebDevelopment.php', null,
			['PHP Programming', 'PHP-Programming.php'],
			['ASP.NET Programming','ASP-NET-Programming.php'],
			['AJAX Programming', 'AJAX-Programming.php'],
			['JAVA Programming', 'JAVA-Programming.php'],
			['Open Source Development', 'Open-Source-Development.php'],
			['Flash Action Script', 'Flash-Action-Script.php'],
			['Ruby On Rails Programming', 'Ruby-On-Rails-Programming.php'],
			['Drupal Development', 'Drupal-Development.php'],			
			['Joomla Development', 'Joomla-Development.php'],						
		],
			['Website Designing', 'Website-Designing.php', null,
			['Website Designing India', 'Website-Designing-India.php'],			
			['Web 2.0 Style Development', 'Web-2.0-Style-Development.php'],
			['Logo Designing', 'Logo-Designing.php'],						
			['Web Templates', 'Web-Templates.php'],									
		],		
		['Offshore Services', 'Offshore-Services.php', null,
			['Offshore Web Development', 'Offshore-Web-Development.php'],
			['Back Office Work', 'Back-Office-Work.php'],			
			['Hire Dedicated Developers', 'Hire-Dedicated-Developers.php'],						
		],
		// 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'
		['eCommerce Solutions', 'eCommerce-Solutions.php', null,
			['Custom eCommerce Solutions', 'Custom-ECommerce-Solutions.php'],
			['Open Source eCommerce Solutions', 'Open Source-ECommerce-Solutions.php'],
		],
		['Internet Marketing', 'Internet-Marketing.php'],
		['Quality Assurance', 'Quality-Assurance.php'],
		
		
	],

	['Portfolio', 'portfolio-1-website-design-portfolio-web-development-portfolio-india-web-portal-portfolio-website-design.php'],
	['Inquire Now', 'inquiry.php'],
	//['Career', 'career.php'],
	['Contact Us', 'contactus.php'],
	
];

