function MenuItem(text,page){
	this.label=text;
	this.action=page;
}
function Menu(pageName){
	this.pagename=pageName
	this.menuItems=new Array();
	this.selectedIndex=0;
}
function menu_addMenuItem(label,page){
	this.menuItems[this.menuItems.length]=new MenuItem(label,page);
}
function menu_getHtml(){
	var bh="<table>";
	for(var i=0;i<this.menuItems.length;i++){
		bh+="<tr>"+
		"<td style='padding-left:10px;padding-right:10px; "+
		"color: blue; "+
		"cursor:pointer; "+
		"text-decoration: underline;' "+
		"onmouseover='top.highlightElement(this)' "+
		"onmouseout='top.unhighlightElement(this)' "+
		"onclick='top."+this.pagename+".actionPerformed(\""+
		this.menuItems[i].action+"\")'>"+
		this.menuItems[i].label+"</td></tr>";
	}
	return bh+"</table>";
}
Menu.prototype.addMenuItem=menu_addMenuItem;
Menu.prototype.getHtml=menu_getHtml;