﻿function MenuSetCurrentPage(id, strClass)
{
	var obj = document.getElementById(id);
	if (obj)
	{
		obj.setAttribute("class", "current");
		obj.setAttribute("className", "current");
	}
}
