var MENU1_ITEMS =[
		[wrap_blue('Home'), 'default.asp', {'tt': 'Giftango.com Home Page', 'sw':90}
	],
	[wrap_blue('Giftango Solution'), 'gift-card-ecommerce.asp', {'sw':160, 'bw':155},
		['Signup Now!', 'signup.asp'],

		['How it works', 'gift-card-sales-services.asp'],
		['Sample Clients', 'gift-card-purchase-examples.asp'],
		['Frequent Questions', 'gift-card-services-faq.asp'],
		['API Software', 'gift-card-api-software.asp']

	],
	[wrap_blue('Partner with us'), 'gift-card-resellers.asp', {'sw':165, 'bw':155},
		['Partner Integration', 'partner-integration.asp'],

		['Affiliate Program', 'gift-card-resellers.asp'],
		['Affiliate Contact Form', 'contact-reseller.asp'],
		['Affiliate Signup', 'reseller-signup.asp']
	],
	[wrap_blue('Company'), 'about-giftango.asp', {'sw':110, 'bw':140},
		['About us', 'about-giftango.asp'],
		['Directions', 'directions.asp'],
		['Employment', 'employment.asp'],
		['Contact Information', 'contact.asp']
	],
	[wrap_blue('Contact Form'), 'contact.asp', {'tt': 'Contact Form', 'sw':130}]
];

function wrap_blue (text) {
	var res=[];
	for (var i=0; i<3; i++)
		res[i]=['<table cellpadding="0" cellspacing="0" border="0"><tr><td><img src="include/menu_files/img/blue',
			(i?2:1),'_l.gif" width="8" height="23" border="0"></td><td background="include/menu_files/img/blue',
			(i?2:1),'_m.gif" style="font-face: tahoma, verdana, arial; font-size: 11px; font-weight: bold; color: #4D6990" width="100%">',text,'</td><td><img src="include/menu_files/img/blue',
			(i?2:1),'_r.gif" width="8" height="23" border="0"></td></tr></table>'
		].join('');
	return res;
}