﻿//funcions rollout/rollover menu cataleg home
function amaga(d){
//d.firstChild.firstChild.style.visibility="hidden";
d.style.backgroundColor="transparent";
d.children[1].children[0].style.textDecoration="none";
d.children[1].children[0].style.color="black";
}
function mostra(d){
//d.firstChild.firstChild.style.visibility="visible";
d.style.backgroundColor="#e9e9e9";
d.children[1].children[0].style.textDecoration="underline";
d.children[1].children[0].style.color="red";
}
//funcions rollout/rollover menu cataleg productes
function amagaprod(d){
//d.firstChild.firstChild.style.visibility="hidden";
d.style.backgroundColor="transparent";
d.children[0].children[1].style.textDecoration="none";
d.children[0].children[1].style.color="black";
}
function mostraprod(d){
//d.firstChild.firstChild.style.visibility="visible";
d.style.backgroundColor="#e9e9e9";
d.children[0].children[1].style.textDecoration="underline";
d.children[0].children[1].style.color="white";
}


//Funcions rollout/rollover llista generes
function listgen_out(d){
//d.firstChild.src='./imatges/mespgenere.gif'
d.style.backgroundColor="#cccccc";
}
function listgen_over(d){
//d.firstChild.src='./imatges/mespgenereh.gif'
coloranterior=d.style.backgroundColor;
d.style.backgroundColor="#999999";
}
//Funcions rollout/rollover llista productes
function listprod_out(d){
d.style.backgroundColor="#efefef";
}
function listprod_over(d){
d.style.backgroundColor="#666666";
}
