
//  Highlights left sidebar employee names areas in response to gridbox rollover.
//  http://programming.top54u.com/post/Javascript-Code-to-Change-Text-Color-of-HTML-elements.aspx

function scott()
        {
            document.getElementById('scott').style.color = 'white';
        }

function connie()
        {
           document.getElementById('connie').style.color = 'white';
        }
		
function nancy()
        {
           document.getElementById('nancy').style.color = 'white';
        }

function dana()
        {
           document.getElementById('dana').style.color = 'white';
        }

function kim()
        {
           document.getElementById('kim').style.color = 'white';
        }
		
function sandi()
        {
           document.getElementById('sandi').style.color = 'white';
        }

function kimberly()
        {
           document.getElementById('kimberly').style.color = 'white';
        }

function dave()
        {
           document.getElementById('dave').style.color = 'white';
        }

function kevin()
        {
           document.getElementById('kevin').style.color = 'white';
        }

function chris()
        {
           document.getElementById('chris').style.color = 'white';
        }

function lydia()
        {
           document.getElementById('lydia').style.color = 'white';
        }

function kris()
        {
           document.getElementById('kris').style.color = 'white';
        }
		
function jeff()
        {
           document.getElementById('jeff').style.color = 'white';
        }



function clearme()
        {
           document.getElementById('scott').style.color = '#c16973';
           document.getElementById('connie').style.color = '#c16973';
           document.getElementById('nancy').style.color = '#c16973';
           document.getElementById('dana').style.color = '#c16973';
           document.getElementById('kim').style.color = '#c16973';
           document.getElementById('sandi').style.color = '#c16973';
           document.getElementById('kimberly').style.color = '#c16973';
           document.getElementById('dave').style.color = '#c16973';
           document.getElementById('kevin').style.color = '#c16973';
           document.getElementById('chris').style.color = '#c16973';
           document.getElementById('lydia').style.color = '#c16973';
           document.getElementById('kris').style.color = '#c16973';
           document.getElementById('jeff').style.color = '#c16973';
        }
		
//   Javascript recreation of text rollovers since above sets text color permanently


function scott_on()
        {
           document.getElementById('scott').style.color = 'white';
        }
function scott_off()
        {
           document.getElementById('scott').style.color = '#c16973';
        }
		
function connie_on()
        {
           document.getElementById('connie').style.color = 'white';
        }
function connie_off()
        {
           document.getElementById('connie').style.color = '#c16973';
        }
		
function nancy_on()
        {
           document.getElementById('nancy').style.color = 'white';
        }
function nancy_off()
        {
           document.getElementById('nancy').style.color = '#c16973';
        }
		
function dana_on()
        {
           document.getElementById('dana').style.color = 'white';
        }
function dana_off()
        {
           document.getElementById('dana').style.color = '#c16973';
        }
		
function kim_on()
        {
           document.getElementById('kim').style.color = 'white';
        }
function kim_off()
        {
           document.getElementById('kim').style.color = '#c16973';
        }
		
function sandi_on()
        {
           document.getElementById('sandi').style.color = 'white';
        }
function sandi_off()
        {
           document.getElementById('sandi').style.color = '#c16973';
        }
		
function kimberly_on()
        {
           document.getElementById('kimberly').style.color = 'white';
        }
function kimberly_off()
        {
           document.getElementById('kimberly').style.color = '#c16973';
        }
		
function dave_on()
        {
           document.getElementById('dave').style.color = 'white';
        }
function dave_off()
        {
           document.getElementById('dave').style.color = '#c16973';
        }
		
function kevin_on()
        {
           document.getElementById('kevin').style.color = 'white';
        }
function kevin_off()
        {
           document.getElementById('kevin').style.color = '#c16973';
        }
		
function chris_on()
        {
           document.getElementById('chris').style.color = 'white';
        }
function chris_off()
        {
           document.getElementById('chris').style.color = '#c16973';
        }
		
function lydia_on()
        {
           document.getElementById('lydia').style.color = 'white';
        }
function lydia_off()
        {
           document.getElementById('lydia').style.color = '#c16973';
        }
		
function kris_on()
        {
           document.getElementById('kris').style.color = 'white';
        }
function kris_off()
        {
           document.getElementById('kris').style.color = '#c16973';
        }
function jeff_on()
        {
           document.getElementById('jeff').style.color = 'white';
        }
function jeff_off()
        {
           document.getElementById('jeff').style.color = '#c16973';
        }
		
	
		function MM_callJS(jsStr) { //v2.0
  return eval(jsStr)
}
