/* *****************************************************
*
*	© 2001 Etensity, Inc.
*	Image Rollover code (in JavaScript)
*
*	Updated:	May 3, 2001
*	By:		Etensity Interation Design Group
*	Contact:	Noah Lazar <nlazar@etensity.com>
*
******************************************************** */
//new rollover functions for text-based headers
/* These two are for normal over and out states */

function textnavover(el,un) {
document.getElementById(un).style.color = "#3F3F3F"; // #3F3F3F
document.getElementById(el).style.background= "admin/images/fondo-cabecera-menu-activo2.gif"; // #CCCC99
}
// #006699


function textnavout(el,un) {
document.getElementById(un).style.color = "#3F3F3F";
document.getElementById(el).style.background = ""; 
}


/*  These two are for over and out states for an unselected home */
function textnavoverhome(el,un) {
document.getElementById(un).style.color = "#3F3F3F";
document.getElementById(el).style.backgroundColor = "#DADBB5";
document.getElementById("navright").style.background = "#DADBB5";
}

function textnavouthome(el,un) {
document.getElementById(un).style.color = "#3F3F3F";
document.getElementById(el).style.backgroundColor = "#EEEECC";
document.getElementById("navright").style.background = "#EEEECC";
}


function textnavoverhomeleft(el,un) {
document.getElementById(un).style.color = "#3F3F3F";
document.getElementById(el).style.backgroundColor = "#DADBB5";
document.getElementById("navleft").style.background = "#DADBB5";
}

function textnavouthomeleft(el,un) {
document.getElementById(un).style.color = "#3F3F3F";
document.getElementById(el).style.backgroundColor = "#EEEECC";
document.getElementById("navleft").style.background = "#EEEECC";
}


function textnavouthomeleftselect(el,un) {
document.getElementById(un).style.color = "#3F3F3F";
document.getElementById(el).style.backgroundColor = "#CECF9C";
document.getElementById("navleft").style.background = "#CECF9C";
}


/*  These two are for over and out states for selected tabs */
function textnavoverselect(el) {
document.getElementById(el).style.backgroundColor = "#DADBB5";
}


/*   These two are for over and out states for a selected tab */
function textnavoutselect(el,un) {
document.getElementById(un).style.color = "#3F3F3F";
document.getElementById(el).style.backgroundColor = "#CECF9C";
}

function textnavoverhomeselect(el) {
document.getElementById("selected").style.color = "#608F01";
document.getElementById(el).style.backgroundColor = "#FDF6E6";
document.getElementById("navleft-select").style.background = "#FDF6E6";
}

function textnavouthomeselect(el, un) {
document.getElementById("selected").style.color = "#FFFFFF";
document.getElementById(el).style.backgroundColor = "#CECF9C";
document.getElementById("navleft-select").style.background = "#CECF9C";
}
//end - new rollover functions for text-based headers



