﻿// JScript File

function OnPageLoad()
{
	if (currentPage != "")
	{
		var tdObj = document.getElementById(currentPage);
		tdObj.style.background = '#e8e8b8';
	}
}

function OnChangeMenuStyle (obj, isFocus)
{
	if (obj != document.getElementById(currentPage))
	{
		obj.style.background = (isFocus) ? '#e8e8b8' : '#F8F8C6';
	}
}
	
