﻿(function ($) {
    $(document).ready(function () {
        $("#headerSearch .topMenuTextBox").focus(function () {
            if (this.value == this.defaultValue)
                this.value = "";
        });
        $("#headerSearch .topMenuTextBox").blur(function () {
            if (this.value == "")
                this.value = this.defaultValue;
        });
    });
})(jQuery)
