var m2201_btnCount = 1;
var m2201_staCount = 3;
var m2201_btnImages = new Array();
for (i= 0; i< m2201_btnCount; i++)
{
	m2201_btnImages[i] = new Array();
	for (j= 0; j< m2201_staCount; j++)
	{
		m2201_btnImages[i][j] = new Image();
		m2201_btnImages[i][j].src = 'images/m2201_mbtn' + i + '_' + j + '.gif';
	}
}
function m2201_btnMouseOut(img)
{
	document.images[img].src = m2201_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][0].src;
};
function m2201_btnMouseOver(img)
{
	document.images[img].src = m2201_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][1].src;
};
function m2201_btnMouseDown(img)
{
	document.images[img].src = m2201_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][2].src;
};
function m2201_gen_td(iIndex,sLink,sTarget,iWidth,iHeight,sHint) {
str="<td id=\"m2201_mbtn_td"+iIndex+"\">";
str+="<a onMouseOver=\"m2201_btnMouseOver('m2201_mbtn"+iIndex+"')\" onMouseOut=\"m2201_btnMouseOut('m2201_mbtn"+iIndex+"')\" onMouseDown=\"m2201_btnMouseDown('m2201_mbtn"+iIndex+"')\" href=\""+sLink+"\"";
if (sTarget.length >0)
	str+=" target=\""+sTarget+"\"";
str+=">";
str+="<img src=\"images/m2201_mbtn"+iIndex+"_0.gif\" name=m2201_mbtn"+iIndex+" border=0 width=\""+iWidth+"\" height=\""+iHeight+"\" alt=\""+sHint+"\">";
str+="</a></td>";
return str;
};
function m2201_get_table(bHor) {
str="<table id=\"m2201_mbtn_tb\" cellpadding=0 cellspacing=0 border=0>";
str+="<tr>";
str+=m2201_gen_td(0,"http://www.youinc.org/Employment/employment.htm","","71","26","Employment");
str+="</tr>";
str+="</table>";
return str;
};
result=m2201_get_table(true);
document.write(result);
