﻿$(document).ready(function() {
    //searchphraseinput é setado no server da SimpleSearch.ascx.cs
    $(searchphraseinput).focus(function() {
        // Select input field contents
        if (this.value == this.defaultValue) {
            this.value = '';
        }
        if (this.value != this.defaultValue) {
            this.select();
        }
    });
    $(searchphraseinput).blur(function() {        
        if (this.value == '') {
            this.value = (this.defaultValue ? this.defaultValue : '');
        }
    });
});