var MENU1_ITEMS =[
	[wrap_blue('Home'), 'index.html', {'sw':150, 'bw':150},
	],
	[wrap_blue('Stroke Prevention'), null, {'sw':176, 'bw':176},
		['Risk Factors', 'risk.html'],
		['Warning Signs', 'warning.html'],
		
	],
	[wrap_blue('Access to Care'), null, {'sw':176, 'bw':176},
		['Access to Medications', 'accesstomeds.html'],
		['Call for Medications', 'callformeds.html'],
	],

	[wrap_blue('Downloads'), 'downloads.html', {'sw':176, 'bw':176}]
];

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="img/blue',
			(i?2:1),'_l.gif" width="8" height="23" border="0"></td><td background="img/blue',
			(i?2:1),'_m.gif" style="font-face: tahoma, verdana, arial; font-size: 14px; font-weight: bold; text-align: center;   color: #105D94" width="100%">',text,'</td><td><img src="img/blue',
			(i?2:1),'_r.gif" width="8" height="23" border="0"></td></tr></table>'
		].join('');
	return res;
}