﻿/************************************************
03/01/2009

Inversión de los colores del elemento sobre el
que se ubica el ratón para indicar que puede
hacerse click para ejecutar una función

************************************************/

function invierte1()
{
	document.getElementById("enlace1").style.backgroundColor = "#FFAAAA";
	document.getElementById("enlace1").style.borderColor = "#FF0000";
	
}

function revierte1()
{
	document.getElementById("enlace1").style.backgroundColor = "#FF0000";
	document.getElementById("enlace1").style.borderColor = "#FFAAAA";
}

function invierte2()
{
	document.getElementById("enlace2").style.backgroundColor = "#FFAAAA";
	document.getElementById("enlace2").style.borderColor = "#FF0000";
	
}

function revierte2()
{
	document.getElementById("enlace2").style.backgroundColor = "#FF0000";
	document.getElementById("enlace2").style.borderColor = "#FFAAAA";
}

function invierte3()
{
	document.getElementById("enlace3").style.backgroundColor = "#FFAAAA";
	document.getElementById("enlace3").style.borderColor = "#FF0000";
	
}

function revierte3()
{
	document.getElementById("enlace3").style.backgroundColor = "#FF0000";
	document.getElementById("enlace3").style.borderColor = "#FFAAAA";
}

function invierte4()
{
	document.getElementById("enlace4").style.backgroundColor = "#FFAAAA";
	document.getElementById("enlace4").style.borderColor = "#FF0000";
	
}

function revierte4()
{
	document.getElementById("enlace4").style.backgroundColor = "#FF0000";
	document.getElementById("enlace4").style.borderColor = "#FFAAAA";
}

function invierte5()
{
	document.getElementById("enlace5").style.backgroundColor = "#FFAAAA";
	document.getElementById("enlace5").style.borderColor = "#FF0000";
	
}

function revierte5()
{
	document.getElementById("enlace5").style.backgroundColor = "#FF0000";
	document.getElementById("enlace5").style.borderColor = "#FFAAAA";
}
