// 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','/'],
	['Webhosting','/web-hosting/', null,
		['Windows Hosting','/web-hosting/windows-hosting/'],
		['Linux Hosting','/web-hosting/linux-hosting/'],
		['ASP.NET Hosting','/web-hosting/asp.net-hosting/'],
		['Java Hosting','/web-hosting/java-hosting/'],
		['Transfer Domain','/transfer-domain.asp'],
		['whois Lookup','http://manage.quick2host.com/domainchecker.php'],
		['Domain Registration','/domain-registration.asp']
		
	],
	['Servers','/server-solutions.asp',null,
		['Dedicated Servers','/dedicated-server/'],
		['Virtual Dedicated Servers','/virtual-dedicated-server/'],
		['Customised Dedicated Servers','/dedicated-server/configure-server.asp']
	],
	['Resellers','/web-hosting/reseller-web-hosting/default.asp',null,
		['Windows Reseller Pro','/web-hosting/reseller-web-hosting/windows-reseller-hosting/windows-hosting-reseller-pro-plan.asp'],
		['Linux Reseller Pro','/web-hosting/reseller-web-hosting/linux-reseller-hosting/linux-hosting-reseller-pro-plan.asp'],
		['Windows Reseller Starter','/web-hosting/reseller-web-hosting/windows-reseller-hosting/windows-hosting-reseller-starter-plan.asp'],
		['Linux Reseller Starter','/web-hosting/reseller-web-hosting/linux-reseller-hosting/linux-hosting-reseller-starter-plan.asp']
	],
	['Payments ','/payment/',null,
		
		['Online Transfer','/payment/online-transfer.asp'],
		['CreditCard / Paypal','/payment/credit-card.asp'],
		['Local ICICI/UTI/Axis Bank','/payment/local-bank.asp'],
		['Check/Demand Draft','/payment/check.asp'],
		['Money Order','/payment/money-order.asp']
	],
	['Our Clients','/clients.asp',null,
		['Client Portfolio','/clients.asp'],
		['Client Testimonials','/testimonial.asp']
	],
	['About Us',null, null,
		['About Company','/about-us.asp'],
		['Press Release','http://manage.quick2host.com/index.php']
	],

	['Support','http://manage.quick2host.com/',null,
		['Transfer Quick2Host','/support/transfer.asp'],
		['Pre Sales Questions','http://manage.quick2host.com/knowledgebase.php?action=displaycat&catid=4'],
		['Announcements','http://manage.quick2host.com/announcements.php'],
		['Knowledgebase','http://manage.quick2host.com/knowledgebase.php'],
		['Video Tutorials','/help/'],
		['Submit a Ticket','http://manage.quick2host.com/submitticket.php']
],
['Web Design','/website-designing/', null,
		['Website Designing','/website-designing/'],
		['Ready Made websites','/readymade-websites/'],
	['Logo Designing','/logo-designing/']
],
['Other Services','/other-services/',null,
	['Internet Marketing','/internet-marketing/'],
	['SMS Package','/sms/'],
	['Business Email','/email-hosting/'],
	['SSL Certificates','/ssl-certificate/'],
	['Renewal','/renewal.asp']
	],
	
];

