function onMenuOver( theCell )
{
	if( theCell.className != "menu_on" )
	{
		theCell.oldClassName = theCell.className;
		theCell.className = "menu_hover";
	}
}

function onMenuOut( theCell )
{
	if( theCell.className != "menu_on" )
	{
		theCell.className = theCell.oldClassName;
	}
}

function onSubMenuOver( theCell )
{
	if( theCell.className != "submenu_on" )
	{
		theCell.oldClassName = theCell.className;
		theCell.className = "submenu_hover";
	}
}

function onSubMenuOut( theCell )
{
	if( theCell.className != "submenu_on" )
	{
		theCell.className = theCell.oldClassName;
	}
}

function onSortColumn( column )
{
	document.location = "/admin/db/cv/sort_column/" + column;
}

function onApplyResumeFilters()
{
	$("frmResumes").submit();
}

function onResetResumeFilters()
{
	$("frmResumes").subaction.value = "reset_filters";
	$("frmResumes").submit();
}