// JavaScript Document

function drawMenu(currPageNum, spaces) {
	//called wherever you want the menu to draw. 
	//currPageNum tells which item to show as selected
	//spaces tells how many <br>s between items
	var n=0;
	var linkBuff = "";
	itemsArray = [
["index.html","Design Philosophy","_parent"],
["gallery.html","Photo Gallery","_parent"],
["fengshui.html","Feng Shui","_parent"],
["testimonials.html","Testimonials","_parent"],
["links.html","Links","_parent"]];
	for (var idx=0; idx<itemsArray.length; idx++) {
		itm=itemsArray[idx];
		if (idx != currPageNum) {
			linkBuff = "<a href=\""+itm[0]+"\" target=\""+itm[2]+"\" title=\""+itm[1]+"\" class=\"MenuText\">"+itm[1]+"</a>";
			document.write(linkBuff);
		} else {
			linkBuff = "<a href=\""+itm[0]+"\" target=\""+itm[2]+"\" title=\""+itm[1]+"\" class=\"MenuTextSelected\">"+itm[1]+"</a>";
			document.write(linkBuff);
		}
		for (var i=0; i < spaces; i++) {
			document.write("<br>");
		}
		n++;
	}
}


