﻿(function($){
    $.fn.jLewisForm = function() {
        return this.each(function() {
            var s = $(this).val();
			$(this).focus(function() {
				if ($(this).val() == s) {
					$(this).val("");
				}
			});
			$(this).blur(function() {
				if ($(this).val() == "") {
					$(this).val(s);
				}
			});
        });
    };
})(jQuery);
