// ----------------------------------------------------------------
// --- las funciones para el cambio de color de los botones     ---
// ----------------------------------------------------------------
function sobre(objeto) {
	objeto.style.borderColor = '#ccccff'
	objeto.style.backgroundColor = '#6666ff'
	//objeto.class = "boton_azul2"
}

function fuera(objeto) {
	objeto.style.borderColor = '#ccccff'
	objeto.style.backgroundColor = '#3333cc'
	//objeto.class = "boton_azul"
}

function sobreNaranja(objeto) {
	objeto.style.backgroundColor = '#ff9966'
    objeto.style.borderColor = '#000099'    
}

function fueraNaranja(objeto) {
	objeto.style.borderColor = '#000099'
	objeto.style.backgroundColor = '#ffcc99'
}
