

function change_menu_css(cur, style)
{
	if (style == "over")
	{
		change_cursor(cur, "over");
		cur.className = "td_menu_over";
	}
	else if (style == "out")
	{
		change_cursor(cur, "out");
		cur.className = "td_menu_out";
	}
}

function change_menu_page(page)
{
	window.location.href = page;
}