var twr_sidebtnCount = 9;
var twr_sidestaCount = 3;
var twr_sidebtnImages = new Array();
function twr_sidebtnMouseOut(img)
{
	document.images[img].src = twr_sidebtnImages[img.substring(img.indexOf('mbtn')+4,img.length)][0].src;
};
function twr_sidebtnMouseOver(img)
{
	document.images[img].src = twr_sidebtnImages[img.substring(img.indexOf('mbtn')+4,img.length)][1].src;
};
function twr_sidebtnMouseDown(img)
{
	document.images[img].src = twr_sidebtnImages[img.substring(img.indexOf('mbtn')+4,img.length)][2].src;
};
function twr_sidegen_td(iIndex,sLink,sTarget,iWidth,iHeight,sHint,imgFolder) {
str="<td style=\"padding-bottom:9px\" id=\"twr_sidembtn_td"+iIndex+"\">";
str+="<a onMouseOver=\"twr_sidebtnMouseOver('twr_sidembtn"+iIndex+"')\" onMouseOut=\"twr_sidebtnMouseOut('twr_sidembtn"+iIndex+"')\" onMouseDown=\"twr_sidebtnMouseDown('twr_sidembtn"+iIndex+"')\" href=\""+sLink+"\"";
if (sTarget.length >0)
	str+=" target=\""+sTarget+"\"";
str+=">";
str+="<img src=\""+imgFolder+"/twr_sidembtn"+iIndex+"_0.gif\" name=twr_sidembtn"+iIndex+" border=0 width=\""+iWidth+"\" height=\""+iHeight+"\" alt=\""+sHint+"\">";
str+="</a></td>";
return str;
};
function twr_sideget_table(bHor,imgFolder) {
str="<table id=\"twr_sidembtn_tb\" cellpadding=0 cellspacing=0 border=0>";
str+="<tr>";
str+=twr_sidegen_td(0,"http://www.glidewing.com/twr/soundhealing_home.html","","268","30","Sound Healing Workshop Home Page",imgFolder);
if (bHor==false) str+="</tr><tr>";
str+=twr_sidegen_td(1,"http://www.glidewing.com/twr/soundhealing_tradition.html","","268","30","More information about the ancient tradition of Tibetan Sound Healing",imgFolder);
if (bHor==false) str+="</tr><tr>";
str+=twr_sidegen_td(2,"http://www.glidewing.com/twr/soundhealing_rinpoche.html","","268","30","More about Geshe Tenzin Wangyal Rinpoche",imgFolder);
if (bHor==false) str+="</tr><tr>";
str+=twr_sidegen_td(3,"http://www.glidewing.com/twr/soundhealing_interview.html","","268","30","An interview with Rinpoche about Tibetan Sound Healing",imgFolder);
if (bHor==false) str+="</tr><tr>";
str+=twr_sidegen_td(4,"http://www.glidewing.com/twr/soundhealing_syllabus.html","","268","30","Sound Healing Online Workshop Syllabus",imgFolder);
if (bHor==false) str+="</tr><tr>";
str+=twr_sidegen_td(5,"http://www.glidewing.com/twr/soundhealing_registration.html","","268","30","Register now for the Tibetan Sound Healing Workshop",imgFolder);
if (bHor==false) str+="</tr><tr>";
str+=twr_sidegen_td(6,"http://www.glidewing.com/twr/soundhealing_disclaimer.html","","268","30","Important legal information about Workshop Enrollment",imgFolder);
if (bHor==false) str+="</tr><tr>";
str+=twr_sidegen_td(7,"http://www.glidewing.com/twr/inner_refuge.html","","268","30","Recorded Webcast by Geshe Tenzin Wangyal Rinpoche",imgFolder);
if (bHor==false) str+="</tr><tr>";
str+=twr_sidegen_td(8,"http://www.ligmincha.org","","268","30","Link to the Ligmincha Institute Web Site",imgFolder);
str+="</tr>";
str+="</table>";
return str;
};
function draw_buttons(imgFolder,divID,iPressed)
{
for (i= 0; i< twr_sidebtnCount; i++)
{
	twr_sidebtnImages[i] = new Array();
	for (j= 0; j< twr_sidestaCount; j++)
	{
		twr_sidebtnImages[i][j] = new Image();
		twr_sidebtnImages[i][j].src = imgFolder + '/twr_sidembtn' + i + '_' + j + '.gif';
	}
}
result=twr_sideget_table(false,imgFolder);
document.write(result);
}
