//<!--
 var oldnav;
var orig = "";
var over = "#F3F3F3";
function do_over (the_element) {
if (oldnav != null) { oldnav.style.backgroundColor = orig; }
oldnav = the_element;
the_element.style.backgroundColor = over;
}
function do_out (the_element) {
the_element.style.backgroundColor = orig;
oldnav = null;
}
//-->


