﻿$(document).ready(function() {

    $("#s_loc").autocomplete('ajax/autocomplete.aspx', {
        minChars: 3,
        cacheLength: 20,
        delay: 10,
        autoFill: true
    });

    $("#s_loc").result(function(event, data, formatted) {
        var hidden = $("#s_lid");
        hidden.val(data[1]);
    });


    $('input:text').each(function() {
        this.onfocus = (function() { if (this.value == this.defaultValue) this.value = ""; });
        this.onblur = (function() { if (this.value == "") this.value = this.defaultValue; });
    });

    $('textarea').each(function() {
        this.onfocus = (function() { if (this.value == this.defaultValue) this.value = ""; });
        this.onblur = (function() { if (this.value == "") this.value = this.defaultValue; });
    });
    //w3c complient autocomplete off
    document.getElementById("s_loc").setAttribute("autocomplete", "off");
});
