﻿$.fn.watermark = function(defText) {
    $(this).bind("focus click", function() {

        if ($(this).val() == defText) {
            $(this).val('');
        }
    }).bind("blur", function() {
        if ($(this).val() == "") {
            $(this).val(defText);
        }
    });
}
