//----------------   mouse over color change ------------------------------------------------------------------------------
//  <a name="link7" href="page.htm" style="text-decoration:none" 
//   onmouseover="doColor(link7, '#ff0000');" onmouseout="doColor(link7,'#3399ff');"> PageName</a>
//--------------------------------------------------------------------------------------------------------------------------------------
function doColor(item, color, bg) {
item.style.color = color; // changes text color
}

function undoColor(item) {
item.style.color = "#3399ff"; // sets color back to BLUE (3399ff) 
}
