           
function affiche(iRub)
{
    for (var i=1; i<9; i++)
    {
        cache(i);
    }
    
    document.getElementById("produitImg" + iRub).style.filter = "alpha(opacity=100)";
    document.getElementById("produitNom" + iRub).style.filter = "alpha(opacity=100)";
    document.getElementById("produitImg" + iRub).style.opacity = "1";
    document.getElementById("produitNom" + iRub).style.opacity = "1";
    document.getElementById("produitDetails" + iRub).style.display = "block";
}

function cache(iRub)
{
    document.getElementById("produitImg" + iRub).style.filter = "alpha(opacity=40)";
    document.getElementById("produitNom" + iRub).style.filter = "alpha(opacity=50)";
    document.getElementById("produitImg" + iRub).style.opacity = ".40";
    document.getElementById("produitNom" + iRub).style.opacity = ".50";
    document.getElementById("produitDetails" + iRub).style.display = "none";

}

        
