//JS for ActsCollege.org

var lastwhich = "";

function movein(which, which2, pLNK)
{
	which.style.background="#C8D1CE";
	which2.style.color="#988171";
	
	window.status = "http://" + location.host + "/" + pLNK;
}

function moveoutmenu(which, which2)
{
	which.style.background="#EEE9E6";
	which2.style.color="#204080";

	window.status = "";
}


function AddSideMenuItem(pID, pLNK, pLBL)
{
	var txtID = pID + "txt";
	
	document.write ("<tr>");
		document.write ("<td id=\"" + pID + "\" class=\"sidemenuTBL\" onmouseover=\"movein(" + pID + ", " + txtID + ", '" + pLNK + "');\" onmouseout=\"moveoutmenu(" + pID + ", " + txtID + ");\" onclick='JavaScript: location.href=\"" + pLNK + "\";'>");
		document.write ("<a href=\"" + pLNK + "\" id=\"" + txtID + "\" class=\"sidemenulink\">" + pLBL + "</a>");
		document.write ("</td>");
	document.write ("</tr>");
}
