function Menu(strName) {
	this.size = 0;
	this.menuName = strName;
	this.menuURL = "blank";
	this.linkNames = new Array();
	this.linkURLs = new Array();
}

Menu.prototype.addItem = function (strName, strURL) {
	this.linkNames[this.size] = strName;
	this.linkURLs[this.size] = strURL;
	this.size++;
}

Menu.prototype.getName = function (intPos) {
	return this.linkNames[intPos];
}

Menu.prototype.getURL = function (intPos) {
	return this.linkURLs[intPos];
}

Menu.prototype.build = function () {

//	document.writeln("<div class='sideNavGap2'><img src='/images/transparent.gif' border='0' /></div>");

	if(this.menuURL == "blank") {

		document.writeln("<div><a class='sideNavTitle' href='" + this.getURL(0) + "'>" + this.menuName + "</a></div>");

	} else {

		document.writeln("<div><a class='sideNavTitle' href='" + this.menuURL + "'>" + this.menuName + "</a></div>");

	}

//	document.writeln("<!-- horizontal rule --><div class='navRule' style='background-color: #336699;'><img src='/images/transparent.gif' border='0' /></div>");

	document.writeln("<hr>");

}



