function writeNav(loc){

var startDiv = '<div class=\'navBt\'>';
var l1 = {myLoc:'whoWeAre.html', myLabel:'Who We Are'};
var l2 = {myLoc:'articles.html', myLabel:'Articles'};
var l3 = {myLoc:'movements.html', myLabel:'Movements &amp; Sacred Dances'};
var l4 = {myLoc:'music.html', myLabel:'Music'};
var l5 = {myLoc:'readings.html', myLabel:'Source Material'};
var l6 = {myLoc:'links.html', myLabel:'Links'};
var l7 = {myLoc:'events.html', myLabel:'Public Events'};

var l_array = new Array(l1,l2,l3,l4,l5,l6,l7);
var docToWrite = startDiv + '\n';

var c = 0;
	while(c < 7){
		c++;
		var b = c - 1;
		
			if(l_array[b].myLoc != loc){
			docToWrite += '<a href=\'' + l_array[b].myLoc + '\'>' + l_array[b].myLabel + '</a>\n';
			} else {
			docToWrite += '<div class=\'selected\'>\n<a href=\'' + l_array[b].myLoc + '\'>' + l_array[b].myLabel + '</a>\n</div>\n';
			};
	}

docToWrite += '\n</div>\n';	

document.write(docToWrite);	

}
