var thingy, activeThingy, ii;



function showmenu(elmnt)
{
document.getElementById(elmnt).style.visibility="visible"
}
function hidemenu(elmnt)
{
document.getElementById(elmnt).style.visibility="hidden"
}

function makeNavMenu(navName, menuId, menuName, leftPos, topPos, zPos, className, tableWidth)
{
		document.writeln("<div CLASS='" + className + "' ID='" + menuId + "'><IMG SRC='http://www.raitinvestmenttrust.com/images/dropdown-top.gif' WIDTH='154' HEIGHT='3'><BR><TABLE BORDER='0' CELLPADDING='3' CELLSPACING='0' BGCOLOR='#666666' WIDTH='" + tableWidth + "'><TR><TD><TABLE BORDER='0' CELLPADDING='5' CELLSPACING='0' BGCOLOR='#666666'>");
		document.writeln("<TR><TD><FONT>");
		for(i=0; i < eval(navName).length; i++)
		{
			if (eval(navName)[i]._link != "")
			{
				if (eval(navName)[i]._link != "x")
				{
					document.writeln("<A HREF='" + eval(navName)[i]._link +"' TARGET='" + eval(navName)[i]._target + "' CLASS='menuText'>" + eval(navName)[i]._string + "</A><BR>");
				}
				else
				{
					document.writeln(eval(navName)[i]._string + "<BR>");
				}
				
				if (i != (eval(navName).length - 1))
				{
					document.writeln("<IMG SRC='http://www.raitinvestmenttrust.com/images/dropdown-div.gif' WIDTH='138' HEIGHT='5'><BR>");
				}
			}			
			else
			{
				document.writeln("<span class=menuTextHd>" + eval(navName)[i]._string + "</span><br>");
				if (i != (eval(navName).length - 1))
				{
					document.writeln("<IMG SRC='http://www.raitinvestmenttrust.com/images/dropdown-div.gif' WIDTH='138' HEIGHT='5'><BR>");
				}
			}
		}
		document.writeln("</FONT></TD></TR></TABLE></TD></TR></TABLE></div>");
	
	document.close();
	
}

