//
// k i l a k  (c) 2007
// http://www.kilak.com/
//

<!--
        if (document.images) {            // Active Images
// ENCENDIDO
// FOOTER
            img00on = new Image();
            img00on.src = "images/enc/idioma_on.gif";
			img01on = new Image();
            img01on.src = "images/enc/estudio_on.gif";
            img02on = new Image();
            img02on.src = "images/enc/portfolio_on.gif";
            img03on = new Image();
            img03on.src = "images/enc/clientes_on.gif";
            img04on = new Image();
            img04on.src = "images/enc/contacto_on.gif";

// MENU LEFT
            img00off = new Image();
            img00off.src = "images/enc/idioma_off.gif";
            img01off = new Image();
            img01off.src = "images/enc/estudio_off.gif";
            img02off = new Image();
            img02off.src = "images/enc/portfolio_off.gif";
            img03off = new Image();
            img03off.src = "images/enc/clientes_off.gif";
            img04off = new Image();
            img04off.src = "images/enc/contacto_off.gif";


        }

// 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");
        }
}

// -->
