var m9331_btnCount = 8;
var m9331_staCount = 3;
var m9331_btnImages = new Array();
for (i= 0; i< m9331_btnCount; i++)
{
	m9331_btnImages[i] = new Array();
	for (j= 0; j< m9331_staCount; j++)
	{
		m9331_btnImages[i][j] = new Image();
		m9331_btnImages[i][j].src = 'images/m9331_mbtn' + i + '_' + j + '.gif';
	}
}
function m9331_btnMouseOut(img)
{
	document.images[img].src = m9331_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][0].src;
};
function m9331_btnMouseOver(img)
{
	document.images[img].src = m9331_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][1].src;
};
function m9331_btnMouseDown(img)
{
	document.images[img].src = m9331_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][2].src;
};
function m9331_gen_td(iIndex,sLink,sTarget,iWidth,iHeight,sHint) {
str="<td id=\"m9331_mbtn_td"+iIndex+"\">";
str+="<a onMouseOver=\"m9331_btnMouseOver('m9331_mbtn"+iIndex+"')\" onMouseOut=\"m9331_btnMouseOut('m9331_mbtn"+iIndex+"')\" onMouseDown=\"m9331_btnMouseDown('m9331_mbtn"+iIndex+"')\" href=\""+sLink+"\"";
if (sTarget.length >0)
	str+=" target=\""+sTarget+"\"";
str+=">";
str+="<img src=\"images/m9331_mbtn"+iIndex+"_0.gif\" name=m9331_mbtn"+iIndex+" border=0 width=\""+iWidth+"\" height=\""+iHeight+"\" alt=\""+sHint+"\">";
str+="</a></td>";
return str;
};
function m9331_get_table(bHor) {
str="<table id=\"m9331_mbtn_tb\" cellpadding=0 cellspacing=0 border=0>";
str+="<tr>";
str+=m9331_gen_td(0,"index.htm","_parent","146","36","Home");
if (bHor==false) str+="</tr><tr>";
str+=m9331_gen_td(1,"time.htm","home","146","36","Session Times");
if (bHor==false) str+="</tr><tr>";
str+=m9331_gen_td(2,"comingsoon.htm","home","146","36","Coming Soon");
if (bHor==false) str+="</tr><tr>";
str+=m9331_gen_td(3,"http://www.katherinecinemas.com.au/filmsociety.htm","home","146","36","Film Society");
if (bHor==false) str+="</tr><tr>";
str+=m9331_gen_td(4,"http://www.katherinecinemas.com.au/prices.htm","home","146","36","Prices");
if (bHor==false) str+="</tr><tr>";
str+=m9331_gen_td(5,"http://www.katherinecinemas.com.au/classifications.htm","home","146","36","Classifications");
if (bHor==false) str+="</tr><tr>";
str+=m9331_gen_td(6,"http://www.katherinecinemas.com.au/links.htm","home","146","36","Links");
if (bHor==false) str+="</tr><tr>";
str+=m9331_gen_td(7,"http://www.katherinecinemas.com.au/contactus.htm","home","146","36","Contact Us");
str+="</tr>";
str+="</table>";
return str;
};
result=m9331_get_table(false);
document.write(result);
