﻿$.fn.textWaterMark = function(textMessage)
{
   $(this).attr("value", textMessage);
   $(this).click(function()
   {
      $(this).attr("value", "");
   }
   );
   $(this).blur(function()
   {
      var txtvalue = $(this).attr("value");
      if(txtvalue == "")
      {
         $(this).attr("value", textMessage);
      }
   }
   );
}

