Porque no anda esto? hay varias funciones seguidas pero no funciona.
Si quito lo q esta en rojo y dejo lo otro nomas si anda.     
Código Javascript
:
Ver originalwindow.onload = function() {    
    [COLOR="Red"]jQuery.noConflict();
    document.onkeypress = muestraInformacion;
    $("autocompleteCliente").className = "autocomplete";
    new Ajax.Autocompleter("nombre", "autocompleteCliente", "autocompleteloc.php", { paramName: "caracteres", minChars: 1, frequency: 0.1});[/COLOR]
    
    $("#mercaderia").autocomplete({
            source: "autocompletemer.php",          
            minLength: 2,
            focus: function(event, ui) {
                    // prevent autocomplete from updating the textbox
                    event.preventDefault();
                    // manually update the textbox
                    $(this).val(ui.item.label);
                },
                select: function(event, ui) {
                    // prevent autocomplete from updating the textbox
                    event.preventDefault();
                    // manually update the textbox and hidden field
                    $(this).val(ui.item.label);
                    //$("#autocomplete2-value").val(ui.item.value);
                }               
    });
}