var m9075_btnCount = 7;
var m9075_staCount = 3;
var m9075_btnImages = new Array();
for (i= 0; i< m9075_btnCount; i++)
{
	m9075_btnImages[i] = new Array();
	for (j= 0; j< m9075_staCount; j++)
	{
		m9075_btnImages[i][j] = new Image();
		m9075_btnImages[i][j].src = 'menu/m9075_mbtn' + i + '_' + j + '.gif';
	}
}
function m9075_btnMouseOut(img)
{
	document.images[img].src = m9075_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][0].src;
};
function m9075_btnMouseOver(img)
{
	document.images[img].src = m9075_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][1].src;
};
function m9075_btnMouseDown(img)
{
	document.images[img].src = m9075_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][2].src;
};
function m9075_gen_td(iIndex,sLink,sTarget,iWidth,iHeight,sHint) {
str="<td id=\"m9075_mbtn_td"+iIndex+"\">";
str+="<a onMouseOver=\"m9075_btnMouseOver('m9075_mbtn"+iIndex+"')\" onMouseOut=\"m9075_btnMouseOut('m9075_mbtn"+iIndex+"')\" onMouseDown=\"m9075_btnMouseDown('m9075_mbtn"+iIndex+"')\" href=\""+sLink+"\"";
if (sTarget.length >0)
	str+=" target=\""+sTarget+"\"";
str+=">";
str+="<img src=\"menu/m9075_mbtn"+iIndex+"_0.gif\" name=m9075_mbtn"+iIndex+" border=0 width=\""+iWidth+"\" height=\""+iHeight+"\" alt=\""+sHint+"\">";
str+="</a></td>";
return str;
};
function m9075_get_table(bHor) {
str="<table id=\"m9075_mbtn_tb\" cellpadding=0 cellspacing=0 border=0>";
str+="<tr>";
str+=m9075_gen_td(0,"http://www.globalpediatrics.com/practice/ourpractice.asp","","140","36","Our Practice");
if (bHor==false) str+="</tr><tr>";
str+=m9075_gen_td(1,"http://www.globalpediatrics.com/practice/officeadmin.asp","","140","36","Joyce Schneider");
if (bHor==false) str+="</tr><tr>";
str+=m9075_gen_td(2,"http://www.globalpediatrics.com/practice/ourstaff.asp","","140","36","Our Staff");
if (bHor==false) str+="</tr><tr>";
str+=m9075_gen_td(3,"http://www.globalpediatrics.com/practice/clinicalstaff.asp","","140","36","Clinical Staff");
if (bHor==false) str+="</tr><tr>";
str+=m9075_gen_td(4,"http://www.globalpediatrics.com/practice/frontoffice.asp","","140","36","Front Office");
if (bHor==false) str+="</tr><tr>";
str+=m9075_gen_td(5,"http://www.globalpediatrics.com/practice/Affiliations.asp","","140","36","Affiliations");
if (bHor==false) str+="</tr><tr>";
str+=m9075_gen_td(6,"http://www.globalpediatrics.com/practice/policies.asp","","140","36","Policies");
str+="</tr>";
str+="</table>";
return str;
};
result=m9075_get_table(false);
document.write(result);
