<!--
// 		
// 	This page contains the functions for 
//	highlighting the Fortis results.



// functions for the results menu

function toggleBgFgColorMouseOver(theBut)
{
	if (theBut.className == "cel_unselected_no_bottom_border")
		theBut.className = "cel_selected_no_bottom_border"
	else
		theBut.className = "cel_selected"
}



function toggleBgFgColorMouseOut(theBut)
{
	if (theBut.className == "cel_selected_no_bottom_border")
		theBut.className = "cel_unselected_no_bottom_border"
	else
		theBut.className = "cel_unselected"
}



// end functions for the results menu



//-->

