
// Swap css when roll-over top menu link
function onTopNavLink(td) {
    td.style.cursor		= 'hand';
    td.style.color		= '#EEEEEE';
    td.style.background 	= '#800000';
    td.style.border		= '1px solid #800000';
}

// Swap css when roll-off top menu link
function offTopNavLink(td) {
    td.style.backgroundImage	= 'url(/smi_online/_images/global/topnav1_bg.gif?sdfg)'
    td.style.border		= '1px solid #990000';
}


// Swap css when over side menu high link
function onSideNavHighLink(td) {
    td.style.cursor		= 'hand';
    td.style.color		= '#800000';
    td.style.backgroundImage	= 'url(/smi_online/_images/global/sidenav_highlink_bg_on.gif)'
}

// Swap css when off side menu high link
function offSideNavHighLink(td) {
    td.style.cursor		= 'hand';
    td.style.color		= '#FFFFFF';
    td.style.backgroundImage	= 'url(/smi_online/_images/global/sidenav_highlink_bg.gif)'
}

// Swap css when over side menu link
function onSideNavLink(td) {
    td.style.cursor		= 'hand';
    td.style.color		= '#008800';
    td.style.background 	= '#D3D3D3';
    td.style.border		= '1px solid #C8C8C8';
}

// Swap css when off side menu link
function offSideNavLink(td) {
    td.style.background		= '#DDDDDD';
    td.style.border		= '1px solid #DDDDDD';
}

// Swap css when over search menu link
function onSearchNavLink(td) {
    td.style.cursor		= 'hand';
    td.style.background 	= '#DDDDDD';
    td.style.color		= '#FFFFFF';
}

// Swap css when off search menu link
function offSearchNavLink(td) {
    td.style.background		= '#EEEEEE';
}