var m3059_btnCount = 7;
var m3059_staCount = 3;
var m3059_btnImages = new Array();
for (i= 0; i< m3059_btnCount; i++)
{
	m3059_btnImages[i] = new Array();
	for (j= 0; j< m3059_staCount; j++)
	{
		m3059_btnImages[i][j] = new Image();
		m3059_btnImages[i][j].src = 'menu/m3059_mbtn' + i + '_' + j + '.gif';
	}
}
function m3059_btnMouseOut(img)
{
	document.images[img].src = m3059_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][0].src;
};
function m3059_btnMouseOver(img)
{
	document.images[img].src = m3059_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][1].src;
};
function m3059_btnMouseDown(img)
{
	document.images[img].src = m3059_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][2].src;
};
function m3059_gen_td(iIndex,sLink,sTarget,iWidth,iHeight,sHint) {
str="<td id=\"m3059_mbtn_td"+iIndex+"\">";
str+="<a onMouseOver=\"m3059_btnMouseOver('m3059_mbtn"+iIndex+"')\" onMouseOut=\"m3059_btnMouseOut('m3059_mbtn"+iIndex+"')\" onMouseDown=\"m3059_btnMouseDown('m3059_mbtn"+iIndex+"')\" href=\""+sLink+"\"";
if (sTarget.length >0)
	str+=" target=\""+sTarget+"\"";
str+=">";
str+="<img src=\"menu/m3059_mbtn"+iIndex+"_0.gif\" name=m3059_mbtn"+iIndex+" border=0 width=\""+iWidth+"\" height=\""+iHeight+"\" alt=\""+sHint+"\">";
str+="</a></td>";
return str;
};
function m3059_get_table(bHor) {
str="<table id=\"m3059_mbtn_tb\" cellpadding=0 cellspacing=0 border=0>";
str+="<tr>";
str+=m3059_gen_td(0,"http://www.globalpediatrics.com/facilities/design.asp","","140","36","The Design of Our Facility");
if (bHor==false) str+="</tr><tr>";
str+=m3059_gen_td(1,"http://www.globalpediatrics.com/facilities/art.asp","","140","36","The Art Room");
if (bHor==false) str+="</tr><tr>";
str+=m3059_gen_td(2,"http://www.globalpediatrics.com/facilities/fantasy.asp","","140","36","The Fantasy Room");
if (bHor==false) str+="</tr><tr>";
str+=m3059_gen_td(3,"http://www.globalpediatrics.com/facilities/galaxy.asp","","140","36","The Galaxy Room");
if (bHor==false) str+="</tr><tr>";
str+=m3059_gen_td(4,"http://www.globalpediatrics.com/facilities/greece.asp","","140","36","The Ancient Greece Room");
if (bHor==false) str+="</tr><tr>";
str+=m3059_gen_td(5,"http://www.globalpediatrics.com/facilities/safari.asp","","140","36","The Safari Room");
if (bHor==false) str+="</tr><tr>";
str+=m3059_gen_td(6,"http://www.globalpediatrics.com/facilities/sports.asp","","140","36","The Sports Room");
str+="</tr>";
str+="</table>";
return str;
};
result=m3059_get_table(false);
document.getElementById("m3059_mtop").innerHTML=result;
