//
// Kilak  (c) 2009
// http://www.kilak.com/
//

<!--
        if (document.images) {            // Active Images
// ENCENDIDO
            img00on = new Image();
            img00on.src = "/images/ml/kilak_on.png";
            img01on = new Image();
            img01on.src = "/images/home/amp_on.png";
            img02on = new Image();
            img02on.src = "/images/home/ampblog_on.png";
            img03on = new Image();
            img03on.src = "/images/home/nel_on.png";
            img04on = new Image();
            img04on.src = "/images/home/eol_on.png";
            img05on = new Image();
            img05on.src = "/images/home/fibol_on.png";


// APAGADO
            img00off = new Image();
            img00off.src = "/images/ml/kilak_off.png";
            img01off = new Image();
            img01off.src = "/images/home/amp_off.png";
            img02off = new Image();
            img02off.src = "/images/home/ampblog_off.png";
            img03off = new Image();
            img03off.src = "/images/home/nel_off.png";
            img04off = new Image();
            img04off.src = "/images/home/eol_off.png";
            img05off = new Image();
            img05off.src = "/images/home/fibol_off.png";
        }

// Function to 'activate' images.
function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");

        }
}
// Function to 'deactivate' images.
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }
}

// END ->
