var MENU1_ITEMS =[
	
	[wrap_blue('FREE Subscription'), 'howstheservice.cfm?secure=subscribe', {'tt': 'FREE Subscription', 'sw':150}],
	[wrap_blue('Search For or Rate Companies'), 'howstheservice.cfm?secure=howstheservice_subscriber_controls', {'tt': 'Rate / Check', 'sw':230}],
		
	[wrap_blue('About'), null, {'sw':70},
		['About us', 'howstheservice.cfm?info=about'],
		['FAQ\'s', 'howstheservice.cfm?info=faqs']
	],
	
	[wrap_blue('Consumer Info'), 'howstheservice.cfm?info=consumer_info', {'tt': 'Consumer Info', 'sw':120}],
	[wrap_blue('Contact'), 'howstheservice.cfm?info=helpcenter#1', {'tt': 'Contact', 'sw':85}],
	[wrap_blue('Need Help?'), 'howstheservice.cfm?info=helpcenter', {'tt': 'Help?', 'sw':105}]
];

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="blue1_l.gif" width="8" height="20" border="0"></td><td background="blue1_m.gif" style="font-face: Verdana, Arial, Helvetica, sans-serif; font-size: 16px; text-align: center; font-weight: bold; color: #0F248D" width="100%">',text,'</td><td><img src="blue1_r.gif" width="8" height="20" border="0"></td></tr></table>'
		].join('');
		
	return res;
}