//ONLY FOR DEVELOPER TIME

if (location.hostname == 'localhost') {
    var server = "http://localhost:8888/cortijo/";
}

else {
    var server = "http://www.cortijo-fontanilla.com/";
}


$(document).ready(function() {

    $("select, input, textarea").uniform();

    $('.add-clientes').live('click', function() {

        var $this = $(this),
                nombre = $this.attr('data-cliente'),
                id = $this.attr('data-id');



        $('.suggestionsBox').hide();
        $('#inputString').val(nombre);
        $('#idcliente').val(id);

    });


});


function lookup(inputString) {

    if (inputString.length == 0) {
        // Hide the suggestion box.
        $('#suggestions').hide();
    } else {
        $.post(server + "admin/autocomplete", {queryString: "" + inputString + ""}, function(data) {
            if (data.length > 0) {
                $('#suggestions').show();
                $('#autoSuggestionsList').html(data);
            }
        });
    }
} //

//function fill(thisValue) {
//    $('#inputString').val(thisValue);
//    setTimeout("$('#suggestions').hide();", 200);
//}











