<!--

var buttonindex;
var strMenu;
var strMenuSpacer;

strMenuSpacer = "";
strMenu = "";
buttonindex = 0;

function menuSpacer()
{
	//strMenu += "\t\t\t\t\t<td width=\"10px\">&nbsp;</td>";
	strMenuSpacer += "<td width=\"55px\"></td>";
}

function mouseOver(id,img,desc)
{
	iditem = document.getElementById("button" + id);
	iditem2 = document.getElementById("rightmsg");

	iditem2.innerHTML = "" + desc + "";

	if (iditem.src != img) 
	{
		iditem.src=img;
	}
}

function mouseOut(id,img)
{
	//iditem2.innerHTML = "&nbsp;";
	window.setTimeout("actionMouseOut('" + id + "','" + img + "');",300,"JavaScript");
}

function actionMouseOut(id,img)
{
	document.getElementById("button" + id).src=img;
}

function menuItemOLD(img,img_over,desc,url)
{
	buttonindex++;
	pic = new Image(50,45);
	pic.src = img;

	pic_over = new Image(50,45);
	pic_over = img_over;

	strMenu += "<td width=\"55px\" background=\"/images/button.gif\" style=\"background-repeat: no-repeat\" align=\"center\">\n";
	strMenu += "<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"table-layout: fixed\">\n";
	strMenu += "<tr>\n";
	strMenu += "<td width=\"45px\" align=\"center\">\n";
	strMenu += "<a href=\"" + url + "\" title=\"" + desc + "\">";
	strMenu += "<img src=\"" + img + "\" border=\"0\" id=\"button" + buttonindex + "\" onMouseOver=\"mouseOver('" + buttonindex + "','" + img_over + "','" + desc + "')\" onMouseOut=\"mouseOut('" + buttonindex + "','" + img + "','" + desc + "')\">\n";
	strMenu += "</a>";
	strMenu += "</td>\n";
	strMenu += "</tr>\n";
	strMenu += "</table>\n";
	strMenu += "</td>\n";
	strMenuSpacer += "<td width=\"55px\"></td>";
}

function menuItem(id, desc, url)
{
	buttonindex++;
	strMenu += "		<li id=\"" + id + "\"><a href=\"" + url + "\" title=\"" + desc + "\">" + desc + "</a></li>\n"
}

-->