// 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.html',null
	],
	['About Us','profile.html',null,
		['Profile','profile.html',null],
		['Association with us','association_with_us.html',null,
		],
		['Testimonials','testimonials.html', null,
		]
		],
	['Services','seo_services.html', null,
		['SEO Services','seo_services.html',null,
				['On Page','on_page.html', null],
				['Off Page','off_page.html', null]
		],
		['SMO Services','smo_services.html', null],
		['Email Marketing','email_marketing.html', null,
				['Classifieds',null,null],
				['Craig List',null,null]
		],
		['Local Listing','local_listing.html', null],
		['Link Building','link_building.html',null],
		['Affiliate Marketing','affiliate_marketing.html', null],
		['Pay Per Click','ppc.html', null]
	],
	['Packages', null, null,
		['SEO Packages','seo_package.html', null],
		['SMO Packages','smo_package.html', null],
		['PPC Packages','ppc_package.html', null]
	],
	['Free Analysis', null, null,
		['Free SEO Analysis','free_seo_analysis.html', null],
		['Free SMO Consultation','free_smo_consultation.html', null]
	],
	['Career','careers.html', null],
	['Contact Us','contactus.html', null],
	['Feedback','feedback.html', null],
];


