//------------------------------ Cambio de colores del menú

function movein(which){
which.style.color='#FF8000'
}
function moveout(which){
which.style.color='#FFFFFF'
}


//------------------------------ Cambio de colores de los links

function moveinL(which){
which.style.color='#90C800'
}
function moveoutL(which){
which.style.color='#506030'
}


//------------------------------ Cambio de colores del pie

function moveinP(which){
which.style.color='#506030'
}
function moveoutP(which){
which.style.color='#FFFFFF'
}


//------------ Protección fotografías
var message="Esta opción no está disponible. \n \n © www.ribagorza.com";

function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;



//------------ Protección select texto

function disableselect(e)
{
return false
}
function reEnable()
{
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar)
{
document.onmousedown=disableselect
document.onclick=reEnable
}
