﻿$(document).ready(function(){
    doWatermark();  
});

function doWatermark()
{
  $('.textWatermark').each(function(){
        if ($(this).attr('value') == $(this).attr('defaultvalue'))
            $(this).css('color', '#838383');
  });
  
  $('.textWatermark').focus(function(){
    if($(this).attr('defaultvalue') == $(this).attr('value'))
    {
        $(this).attr('value', '');        
        $(this).css('color', '#000000');
    }
  });

  $('.textWatermark').blur(function() {
      if ($(this).attr('value') == undefined) {
          $(this).attr('value', $(this).attr('defaultvalue'));
          $(this).css('color', '#838383');
      }
  }); 
}
