<!--

// referencia

var lnkRef = new Array();
var txtRef = new Array();

txtRef[0]="Reading Music";
txtRef[1]="Intervals";
txtRef[2]="Scales";
txtRef[3]="Chords";
txtRef[4]="Articles";
txtRef[5]="Questions";
txtRef[6]="Links";

lnkRef[0]="reading/index.htm";
lnkRef[1]="intervals/index.htm";
lnkRef[2]="scales/index.htm";
lnkRef[3]="chords/index.htm";
lnkRef[4]="../articles/index.htm";
lnkRef[5]="../questions/index.htm";
lnkRef[6]="../links/index.htm";

function menu (){
	var i;
	
	for (i=0; i < txtRef.length; i++)
		document.write('<p class="idx2"><a href="' + lnkRef[i] + '">' + txtRef[i] + '</a></p>');
}
// -->
