<!-- hide
// MENU VARS
currentsection = 'front';

// SETS THE MENUTEXT VARS
textfront='';
textcliente1 = '3M';
textcliente2 = 'Nabisco';
textcliente3 = 'Nestlé';
textcliente4 = 'Good Year';
// Some menutext variables
        var textLayerHtml;
        var dontShowTextLayer = 1;
        var showTimer = null;
		var selec=true;
        function menuTextOn(thisSection) {
            if (browserName != "Opera") {
                thisText = eval('text' + thisSection);
                if (thisSection == currentsection) { textLayerHtml = ""; }
                else { textLayerHtml = "<span class=\"menusml\">"+thisText+"</span>"; }
                rewriteTextLayer(textLayerHtml, 'botoverdiv');
                hide('bottextoff');
                window.clearTimeout(showTimer);
                dontShowTextLayer = 1;
                show('botoverdiv');
                self.status = '' + eval('text' + thisSection) + '';
            }
        }

        function rewriteTextLayer(txt, id) {
            txt += "\n";
            // NS6
            if (browserNew && browserName == "NS") {
                botOver = document.getElementById(id);
                range = document.createRange();
                range.setStartBefore(botOver);
                domfrag = range.createContextualFragment(txt);
                while (botOver.hasChildNodes()) {
                    botOver.removeChild(botOver.lastChild);
                }
                botOver.appendChild(domfrag);
            }
            // IE 4+
            else {
                document.all[id].innerHTML = txt;
            }
        }

        function menuTextOff() {
            if (browserName != "Opera") {
                dontShowTextLayer = 0;
                hide('botoverdiv');
                self.status = '';
                
            }
        }

if (document.images) 
{
image1on = new Image();
image1on.src = "imagenes/clientesList1_over.gif";
image1off = new Image();
image1off.src = "imagenes/clientesList1.gif";

image2on = new Image();
image2on.src = "imagenes/clientesList2_over.gif";
image2off = new Image();
image2off.src = "imagenes/clientesList2.gif";

image3on = new Image();
image3on.src = "imagenes/clientesList3_over.gif";
image3off = new Image();
image3off.src = "imagenes/clientesList3.gif";

image4on = new Image();
image4on.src = "imagenes/clientesList4_over.gif";
image4off = new Image();
image4off.src = "imagenes/clientesList4.gif";
}
function twinOn(imageName1)  {
	document[imageName1].src=eval(imageName1+"on.src");

	}
function twinOff(imageName1) {
	document[imageName1].src=eval(imageName1+"off.src");
	}	
	
// done hiding -->
