<!-- // JavaScript Document

function init() {
    var tasto = document.getElementById("tasto");
    var sub = document.getElementById("finestra");
    var prod = false;
    
    tasto.href="cosmetici.html";
    
    if (tasto.className.indexOf("en") != -1) tasto.href="cosmetics.html";
    
    if (tasto.className != "") prod = true;
    
    tasto.onmouseover = sub.onmouseover = function() {
        tasto.className = "sel";
        sub.className = "popup";
    }
    tasto.onmouseout = sub.onmouseout = function() {
        if (!prod) tasto.className = "";
        sub.className = "";
    }
}

-->
